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