CookieAuthenticationProvider.OnResponseSignOut 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<CookieResponseSignOutContext> OnResponseSignOut { get; set; }
public:
property Action<CookieResponseSignOutContext^>^ OnResponseSignOut {
    Action<CookieResponseSignOutContext^>^ get();
    void set(Action<CookieResponseSignOutContext^>^ value);
}
member OnResponseSignOut : Action<CookieResponseSignOutContext> with get, set
Public Property OnResponseSignOut As Action(Of CookieResponseSignOutContext)

Property Value

Type: System.Action<CookieResponseSignOutContext>

Returns Action<T>.

See Also

CookieAuthenticationProvider Class
Microsoft.Owin.Security.Cookies Namespace

Return to top