AuthorizationServer.Startup.ReceiveAuthenticationCode C# (CSharp) Метод

ReceiveAuthenticationCode() приватный Метод

private ReceiveAuthenticationCode ( AuthenticationTokenReceiveContext context ) : void
context AuthenticationTokenReceiveContext
Результат void
        private void ReceiveAuthenticationCode(AuthenticationTokenReceiveContext context)
        {
            string value;
            if (_authenticationCodes.TryRemove(context.Token, out value))
            {
                context.DeserializeTicket(value);
            }
        }