OAuthAuthorizationServerProvider.OnTokenEndpointResponse Property

 

Called before the TokenEndpoint redirects its response to the caller.

Namespace:   Microsoft.Owin.Security.OAuth
Assembly:  Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)

Syntax

public Func<OAuthTokenEndpointResponseContext, Task> OnTokenEndpointResponse { get; set; }
public:
property Func<OAuthTokenEndpointResponseContext^, Task^>^ OnTokenEndpointResponse {
    Func<OAuthTokenEndpointResponseContext^, Task^>^ get();
    void set(Func<OAuthTokenEndpointResponseContext^, Task^>^ value);
}
member OnTokenEndpointResponse : Func<OAuthTokenEndpointResponseContext, Task> with get, set
Public Property OnTokenEndpointResponse As Func(Of OAuthTokenEndpointResponseContext, Task)

Property Value

Type: System.Func<OAuthTokenEndpointResponseContext, Task>

Returns Func<T, TResult>.

See Also

OAuthAuthorizationServerProvider Class
Microsoft.Owin.Security.OAuth Namespace

Return to top