OAuthBearerAuthenticationProvider.OnRequestToken Property
Handles processing OAuth bearer token.
Namespace: Microsoft.Owin.Security.OAuth
Assembly: Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)
Syntax
public Func<OAuthRequestTokenContext, Task> OnRequestToken { get; set; }
public:
property Func<OAuthRequestTokenContext^, Task^>^ OnRequestToken {
Func<OAuthRequestTokenContext^, Task^>^ get();
void set(Func<OAuthRequestTokenContext^, Task^>^ value);
}
member OnRequestToken : Func<OAuthRequestTokenContext, Task> with get, set
Public Property OnRequestToken As Func(Of OAuthRequestTokenContext, Task)
Property Value
Type: System.Func<OAuthRequestTokenContext, Task>
Returns Func<T, TResult>.
See Also
OAuthBearerAuthenticationProvider Class
Microsoft.Owin.Security.OAuth Namespace
Return to top