OAuthAuthorizationServerProvider.OnValidateTokenRequest Property

 

Called for each request to the Token endpoint to determine if the request is valid and should continue. The default behavior when using the OAuthAuthorizationServerProvider is to assume well-formed requests, with validated client credentials, should continue processing. An application may add any additional constraints.

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

Syntax

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

Property Value

Type: System.Func<OAuthValidateTokenRequestContext, Task>

Returns Func<T, TResult>.

See Also

OAuthAuthorizationServerProvider Class
Microsoft.Owin.Security.OAuth Namespace

Return to top