Share via


AuthPlatform Constructors

Definition

Overloads

AuthPlatform()

Initializes a new instance of the AuthPlatform class.

AuthPlatform(Nullable<Boolean>, String, String)

Initializes a new instance of the AuthPlatform class.

AuthPlatform()

Initializes a new instance of the AuthPlatform class.

public AuthPlatform ();
Public Sub New ()

Applies to

AuthPlatform(Nullable<Boolean>, String, String)

Initializes a new instance of the AuthPlatform class.

public AuthPlatform (bool? enabled = default, string runtimeVersion = default, string configFilePath = default);
new Microsoft.Azure.Management.WebSites.Models.AuthPlatform : Nullable<bool> * string * string -> Microsoft.Azure.Management.WebSites.Models.AuthPlatform
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional runtimeVersion As String = Nothing, Optional configFilePath As String = Nothing)

Parameters

enabled
Nullable<Boolean>

<code>true</code> if the Authentication / Authorization feature is enabled for the current app; otherwise, <code>false</code>.

runtimeVersion
String

The RuntimeVersion of the Authentication / Authorization feature in use for the current app. The setting in this value can control the behavior of certain features in the Authentication / Authorization module.

configFilePath
String

The path of the config file containing auth settings if they come from a file. If the path is relative, base will the site's root directory.

Applies to