CustomOpenIdConnectProvider Constructors

Definition

Overloads

CustomOpenIdConnectProvider()

Initializes a new instance of the CustomOpenIdConnectProvider class.

CustomOpenIdConnectProvider(Nullable<Boolean>, OpenIdConnectRegistration, OpenIdConnectLogin)

Initializes a new instance of the CustomOpenIdConnectProvider class.

CustomOpenIdConnectProvider()

Initializes a new instance of the CustomOpenIdConnectProvider class.

public CustomOpenIdConnectProvider ();
Public Sub New ()

Applies to

CustomOpenIdConnectProvider(Nullable<Boolean>, OpenIdConnectRegistration, OpenIdConnectLogin)

Initializes a new instance of the CustomOpenIdConnectProvider class.

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

Parameters

enabled
Nullable<Boolean>

<code>false</code> if the custom Open ID provider provider should not be enabled; otherwise, <code>true</code>.

registration
OpenIdConnectRegistration

The configuration settings of the app registration for the custom Open ID Connect provider.

login
OpenIdConnectLogin

The configuration settings of the login flow of the custom Open ID Connect provider.

Applies to