CookieAuthenticationProvider.OnResponseSignedIn 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<CookieResponseSignedInContext> OnResponseSignedIn { get; set; }
public:
property Action<CookieResponseSignedInContext^>^ OnResponseSignedIn {
Action<CookieResponseSignedInContext^>^ get();
void set(Action<CookieResponseSignedInContext^>^ value);
}
member OnResponseSignedIn : Action<CookieResponseSignedInContext> with get, set
Public Property OnResponseSignedIn As Action(Of CookieResponseSignedInContext)
Property Value
Type: System.Action<CookieResponseSignedInContext>
Returns Action<T>.
See Also
CookieAuthenticationProvider Class
Microsoft.Owin.Security.Cookies Namespace
Return to top