AuthenticationTicket authenticationProperties csharp .net

Code Example - AuthenticationTicket authenticationProperties csharp .net

                
                        public override Task TokenEndpoint(OAuthTokenEndpointContext context)
    {
        foreach (KeyValuePair<string, string> property in context.Properties.Dictionary)
        {
            context.AdditionalResponseParameters.Add(property.Key, property.Value);
        }
        return Task.FromResult<object>(null);
    }