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

Property Value

Type: System.Action<CookieResponseSignInContext>

Returns Action<T>.

See Also

CookieAuthenticationProvider Class
Microsoft.Owin.Security.Cookies Namespace

Return to top