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

◆ AcceptSecurityContext() [4/4]

static int System.Net.SSPIWrapper.AcceptSecurityContext ( System::Net::ISSPIInterface secModule,
System::Net::Security::SafeFreeCredentials credential,
ref System::Net::Security::SafeDeleteSslContext context,
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 145 of file SSPIWrapper.cs.

146 {
147 if (System.Net.NetEventSource.Log.IsEnabled())
148 {
149 System.Net.NetEventSource.Log.AcceptSecurityContext(credential, context, inFlags);
150 }
151 int num = secModule.AcceptSecurityContext(credential, ref context, inputBuffers, inFlags, datarep, ref outputBuffer, ref outFlags);
152 if (System.Net.NetEventSource.Log.IsEnabled())
153 {
154 System.Net.NetEventSource.Log.SecurityContextInputBuffers("AcceptSecurityContext", inputBuffers.Count, outputBuffer.size, (global::Interop.SECURITY_STATUS)num);
155 }
156 return num;
157 }
static readonly System.Net.NetEventSource Log
int AcceptSecurityContext(System.Net.Security.SafeFreeCredentials credential, ref System.Net.Security.SafeDeleteSslContext context, System.Net.Security.InputSecurityBuffers inputBuffers, global::Interop.SspiCli.ContextFlags inFlags, global::Interop.SspiCli.Endianness endianness, ref System.Net.Security.SecurityBuffer outputBuffer, ref global::Interop.SspiCli.ContextFlags outFlags)

References System.Net.NetEventSource.Log.