Share via


FacebookAuthenticationProvider.OnApplyRedirect Property

 

Gets or sets the delegate that is invoked when the ApplyRedirect method is invoked.

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

Syntax

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

Property Value

Type: System.Action<FacebookApplyRedirectContext>

Returns Action<T>.

See Also

FacebookAuthenticationProvider Class
Microsoft.Owin.Security.Facebook Namespace

Return to top