Share via


GitHub Constructors

Definition

Overloads

GitHub()

Initializes a new instance of the GitHub class.

GitHub(Nullable<Boolean>, ClientRegistration, LoginScopes)

Initializes a new instance of the GitHub class.

GitHub()

Initializes a new instance of the GitHub class.

public GitHub ();
Public Sub New ()

Applies to

GitHub(Nullable<Boolean>, ClientRegistration, LoginScopes)

Initializes a new instance of the GitHub class.

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

Parameters

enabled
Nullable<Boolean>

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

registration
ClientRegistration

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

login
LoginScopes

The configuration settings of the login flow.

Applies to