IOAuthAuthorizationServerProvider.AuthorizationEndpointResponse Method (OAuthAuthorizationEndpointResponseContext)
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
Task AuthorizationEndpointResponse(
OAuthAuthorizationEndpointResponseContext context
)
Task^ AuthorizationEndpointResponse(
OAuthAuthorizationEndpointResponseContext^ context
)
abstract AuthorizationEndpointResponse :
context:OAuthAuthorizationEndpointResponseContext -> Task
Function AuthorizationEndpointResponse (
context As OAuthAuthorizationEndpointResponseContext
) As Task
Parameters
context
Type: Microsoft.Owin.Security.OAuth.OAuthAuthorizationEndpointResponseContextThe context of the event carries information in and results out.
Return Value
Type: System.Threading.Tasks.Task
Task to enable asynchronous execution
See Also
IOAuthAuthorizationServerProvider Interface
Microsoft.Owin.Security.OAuth Namespace
Return to top