Share via


GoogleAuthenticationProvider.OnAuthenticated Property

 

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

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

Syntax

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

Property Value

Type: System.Func<GoogleAuthenticatedContext, Task>

Returns Func<T, TResult>.

See Also

GoogleAuthenticationProvider Class
Microsoft.Owin.Security.Google Namespace

Return to top