GoogleAuthenticationProvider.OnAuthenticated Property

Gets or sets the function that calls the Authenticated event.

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

Syntax

'Declaration
Public Property OnAuthenticated As Func(Of GoogleAuthenticatedContext, Task)
    Get 
    Set
'Usage
Dim instance As GoogleAuthenticationProvider 
Dim value As Func(Of GoogleAuthenticatedContext, Task)

value = instance.OnAuthenticated

instance.OnAuthenticated = value
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
function get OnAuthenticated () : Func<GoogleAuthenticatedContext, Task>
function set OnAuthenticated (value : Func<GoogleAuthenticatedContext, Task>)

Property Value

Type: System.Func<GoogleAuthenticatedContext, Task>
The function that calls the Authenticated event.

See Also

Reference

GoogleAuthenticationProvider Class

Microsoft.Owin.Security.Google Namespace