Share via


AzureActiveDirectoryLogin Constructors

Definition

Overloads

AzureActiveDirectoryLogin()

Initializes a new instance of the AzureActiveDirectoryLogin class.

AzureActiveDirectoryLogin(IList<String>, Nullable<Boolean>)

Initializes a new instance of the AzureActiveDirectoryLogin class.

AzureActiveDirectoryLogin()

Initializes a new instance of the AzureActiveDirectoryLogin class.

public AzureActiveDirectoryLogin ();
Public Sub New ()

Applies to

AzureActiveDirectoryLogin(IList<String>, Nullable<Boolean>)

Initializes a new instance of the AzureActiveDirectoryLogin class.

public AzureActiveDirectoryLogin (System.Collections.Generic.IList<string> loginParameters = default, bool? disableWWWAuthenticate = default);
new Microsoft.Azure.Management.WebSites.Models.AzureActiveDirectoryLogin : System.Collections.Generic.IList<string> * Nullable<bool> -> Microsoft.Azure.Management.WebSites.Models.AzureActiveDirectoryLogin
Public Sub New (Optional loginParameters As IList(Of String) = Nothing, Optional disableWWWAuthenticate As Nullable(Of Boolean) = Nothing)

Parameters

loginParameters
IList<String>

Login parameters to send to the OpenID Connect authorization endpoint when a user logs in. Each parameter must be in the form "key=value".

disableWWWAuthenticate
Nullable<Boolean>

<code>true</code> if the www-authenticate provider should be omitted from the request; otherwise, <code>false</code>.

Applies to