OAuthAuthorizationServerProvider.OnAuthorizationEndpointResponse Property

 

Called before the AuthorizationEndpoint redirects its response to the caller. The response could be the token, when using implicit flow or the AuthorizationEndpoint when using authorization code flow. An application may implement this call in order to do any final modification of the claims being used to issue access or refresh tokens. This call may also be used in order to add additional response parameters to the authorization endpoint's response.

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

Syntax

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

Property Value

Type: System.Func<OAuthAuthorizationEndpointResponseContext, Task>

Task to enable asynchronous execution

See Also

OAuthAuthorizationServerProvider Class
Microsoft.Owin.Security.OAuth Namespace

Return to top