OpenIdConnectAuthenticationNotifications.AuthenticationFailed Property
Invoked if exceptions are thrown during request processing. The exceptions will be re-thrown after this event unless suppressed.
Namespace: Microsoft.Owin.Security.OpenIdConnect
Assembly: Microsoft.Owin.Security.OpenIdConnect (in Microsoft.Owin.Security.OpenIdConnect.dll)
Syntax
public Func<AuthenticationFailedNotification<OpenIdConnectMessage, OpenIdConnectAuthenticationOptions>, Task> AuthenticationFailed { get; set; }
public:
property Func<AuthenticationFailedNotification<OpenIdConnectMessage^, OpenIdConnectAuthenticationOptions^>^, Task^>^ AuthenticationFailed {
Func<AuthenticationFailedNotification<OpenIdConnectMessage^, OpenIdConnectAuthenticationOptions^>^, Task^>^ get();
void set(Func<AuthenticationFailedNotification<OpenIdConnectMessage^, OpenIdConnectAuthenticationOptions^>^, Task^>^ value);
}
member AuthenticationFailed : Func<AuthenticationFailedNotification<OpenIdConnectMessage, OpenIdConnectAuthenticationOptions>, Task> with get, set
Public Property AuthenticationFailed As Func(Of AuthenticationFailedNotification(Of OpenIdConnectMessage, OpenIdConnectAuthenticationOptions), Task)
Property Value
Type: System.Func<AuthenticationFailedNotification<OpenIdConnectMessage, OpenIdConnectAuthenticationOptions>, Task>
Returns Func<T, TResult>.
See Also
OpenIdConnectAuthenticationNotifications Class
Microsoft.Owin.Security.OpenIdConnect Namespace
Return to top