Share via


GoogleAuthenticationProvider.OnReturnEndpoint Property

 

Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.

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

Syntax

public Func<GoogleReturnEndpointContext, Task> OnReturnEndpoint { get; set; }
public:
property Func<GoogleReturnEndpointContext^, Task^>^ OnReturnEndpoint {
    Func<GoogleReturnEndpointContext^, Task^>^ get();
    void set(Func<GoogleReturnEndpointContext^, Task^>^ value);
}
member OnReturnEndpoint : Func<GoogleReturnEndpointContext, Task> with get, set
Public Property OnReturnEndpoint As Func(Of GoogleReturnEndpointContext, Task)

Property Value

Type: System.Func<GoogleReturnEndpointContext, Task>

Returns Func<T, TResult>.

See Also

GoogleAuthenticationProvider Class
Microsoft.Owin.Security.Google Namespace

Return to top