Share via


Facebook Constructors

Definition

Overloads

Facebook()

Initializes a new instance of the Facebook class.

Facebook(Nullable<Boolean>, AppRegistration, String, LoginScopes)

Initializes a new instance of the Facebook class.

Facebook()

Initializes a new instance of the Facebook class.

public Facebook ();
Public Sub New ()

Applies to

Facebook(Nullable<Boolean>, AppRegistration, String, LoginScopes)

Initializes a new instance of the Facebook class.

public Facebook (bool? enabled = default, Microsoft.Azure.Management.WebSites.Models.AppRegistration registration = default, string graphApiVersion = default, Microsoft.Azure.Management.WebSites.Models.LoginScopes login = default);
new Microsoft.Azure.Management.WebSites.Models.Facebook : Nullable<bool> * Microsoft.Azure.Management.WebSites.Models.AppRegistration * string * Microsoft.Azure.Management.WebSites.Models.LoginScopes -> Microsoft.Azure.Management.WebSites.Models.Facebook
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional registration As AppRegistration = Nothing, Optional graphApiVersion As String = Nothing, Optional login As LoginScopes = Nothing)

Parameters

enabled
Nullable<Boolean>

<code>false</code> if the Facebook provider should not be enabled despite the set registration; otherwise, <code>true</code>.

registration
AppRegistration

The configuration settings of the app registration for the Facebook provider.

graphApiVersion
String

The version of the Facebook api to be used while logging in.

login
LoginScopes

The configuration settings of the login flow.

Applies to