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

◆ InitializeSecurityContext() [4/4]

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

Definition at line 131 of file SSPIWrapper.cs.

132 {
133 if (System.Net.NetEventSource.Log.IsEnabled())
134 {
135 System.Net.NetEventSource.Log.InitializeSecurityContext(credential, context, targetName, inFlags);
136 }
137 int num = secModule.InitializeSecurityContext(ref credential, ref context, targetName, inFlags, datarep, inputBuffers, ref outputBuffer, ref outFlags);
138 if (System.Net.NetEventSource.Log.IsEnabled())
139 {
140 System.Net.NetEventSource.Log.SecurityContextInputBuffers("InitializeSecurityContext", inputBuffers.Count, outputBuffer.size, (global::Interop.SECURITY_STATUS)num);
141 }
142 return num;
143 }
static readonly System.Net.NetEventSource Log
int InitializeSecurityContext(ref System.Net.Security.SafeFreeCredentials credential, ref System.Net.Security.SafeDeleteSslContext context, string targetName, global::Interop.SspiCli.ContextFlags inFlags, global::Interop.SspiCli.Endianness endianness, System.Net.Security.InputSecurityBuffers inputBuffers, ref System.Net.Security.SecurityBuffer outputBuffer, ref global::Interop.SspiCli.ContextFlags outFlags)

References System.Net.NetEventSource.Log.