CookieAuthenticationProvider.OnException Property

 

A delegate assigned to this property will be invoked when the related method is called.

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

Syntax

public Action<CookieExceptionContext> OnException { get; set; }
public:
property Action<CookieExceptionContext^>^ OnException {
    Action<CookieExceptionContext^>^ get();
    void set(Action<CookieExceptionContext^>^ value);
}
member OnException : Action<CookieExceptionContext> with get, set
Public Property OnException As Action(Of CookieExceptionContext)

Property Value

Type: System.Action<CookieExceptionContext>

Returns Action<T>.

See Also

CookieAuthenticationProvider Class
Microsoft.Owin.Security.Cookies Namespace

Return to top