OpenIdConnectAuthenticationNotifications.SecurityTokenReceived Property
Invoked with the security token that has been extracted from the protocol message.
Namespace: Microsoft.Owin.Security.OpenIdConnect
Assembly: Microsoft.Owin.Security.OpenIdConnect (in Microsoft.Owin.Security.OpenIdConnect.dll)
Syntax
public Func<SecurityTokenReceivedNotification<OpenIdConnectMessage, OpenIdConnectAuthenticationOptions>, Task> SecurityTokenReceived { get; set; }
public:
property Func<SecurityTokenReceivedNotification<OpenIdConnectMessage^, OpenIdConnectAuthenticationOptions^>^, Task^>^ SecurityTokenReceived {
Func<SecurityTokenReceivedNotification<OpenIdConnectMessage^, OpenIdConnectAuthenticationOptions^>^, Task^>^ get();
void set(Func<SecurityTokenReceivedNotification<OpenIdConnectMessage^, OpenIdConnectAuthenticationOptions^>^, Task^>^ value);
}
member SecurityTokenReceived : Func<SecurityTokenReceivedNotification<OpenIdConnectMessage, OpenIdConnectAuthenticationOptions>, Task> with get, set
Public Property SecurityTokenReceived As Func(Of SecurityTokenReceivedNotification(Of OpenIdConnectMessage, OpenIdConnectAuthenticationOptions), Task)
Property Value
Type: System.Func<SecurityTokenReceivedNotification<OpenIdConnectMessage, OpenIdConnectAuthenticationOptions>, Task>
Returns Func<T, TResult>.
See Also
OpenIdConnectAuthenticationNotifications Class
Microsoft.Owin.Security.OpenIdConnect Namespace
Return to top