System.Net.SSPIWrapper.ApplyControlToken C# (CSharp) Method

ApplyControlToken() static private method

static private ApplyControlToken ( System.Net.Security.SSPIInterface secModule, SafeDeleteContext &context, SecurityBuffer inputBuffers ) : int
secModule System.Net.Security.SSPIInterface
context SafeDeleteContext
inputBuffers SecurityBuffer
return int
        internal static int ApplyControlToken(SSPIInterface secModule, ref SafeDeleteContext context, SecurityBuffer[] inputBuffers)
        {
            int errorCode = secModule.ApplyControlToken(ref context, inputBuffers);

            if (NetEventSource.IsEnabled) NetEventSource.Log.OperationReturnedSomething(nameof(ApplyControlToken), (Interop.SECURITY_STATUS)errorCode);

            return errorCode;
        }