OpenIdConnectAuthenticationNotifications.AuthorizationCodeReceived Property
Invoked after security token validation if an authorization code is present in the protocol message.
Namespace: Microsoft.Owin.Security.OpenIdConnect
Assembly: Microsoft.Owin.Security.OpenIdConnect (in Microsoft.Owin.Security.OpenIdConnect.dll)
Syntax
public Func<AuthorizationCodeReceivedNotification, Task> AuthorizationCodeReceived { get; set; }
public:
property Func<AuthorizationCodeReceivedNotification^, Task^>^ AuthorizationCodeReceived {
Func<AuthorizationCodeReceivedNotification^, Task^>^ get();
void set(Func<AuthorizationCodeReceivedNotification^, Task^>^ value);
}
member AuthorizationCodeReceived : Func<AuthorizationCodeReceivedNotification, Task> with get, set
Public Property AuthorizationCodeReceived As Func(Of AuthorizationCodeReceivedNotification, Task)
Property Value
Type: System.Func<AuthorizationCodeReceivedNotification, Task>
Returns Func<T, TResult>.
See Also
OpenIdConnectAuthenticationNotifications Class
Microsoft.Owin.Security.OpenIdConnect Namespace
Return to top