Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ InitializeSecurityContext() [1/4]

static int System.Net.SSPIWrapper.InitializeSecurityContext ( ISSPIInterface secModule,
ref SafeFreeCredentials credential,
ref SafeDeleteSslContext context,
string targetName,
global::Interop::SspiCli::ContextFlags inFlags,
global::Interop::SspiCli::Endianness datarep,
InputSecurityBuffers inputBuffers,
ref SecurityBuffer outputBuffer,
ref global::Interop::SspiCli::ContextFlags outFlags )
inlinestaticpackage

Definition at line 161 of file SSPIWrapper.cs.

162 {
163 if (System.Net.NetEventSource.Log.IsEnabled())
164 {
165 System.Net.NetEventSource.Log.InitializeSecurityContext(credential, context, targetName, inFlags);
166 }
167 int num = secModule.InitializeSecurityContext(ref credential, ref context, targetName, inFlags, datarep, inputBuffers, ref outputBuffer, ref outFlags);
168 if (System.Net.NetEventSource.Log.IsEnabled())
169 {
170 System.Net.NetEventSource.Log.SecurityContextInputBuffers("InitializeSecurityContext", inputBuffers.Count, outputBuffer.size, (global::Interop.SECURITY_STATUS)num);
171 }
172 return num;
173 }
static readonly System.Net.NetEventSource Log

References System.Net.Security.InputSecurityBuffers.Count, System.Net.ISSPIInterface.InitializeSecurityContext(), and System.Net.NetEventSource.Log.