ServicePrincipalProperties Constructors

Definition

Overloads

ServicePrincipalProperties()

Initializes a new instance of the ServicePrincipalProperties class.

ServicePrincipalProperties(String, String)

Initializes a new instance of the ServicePrincipalProperties class.

ServicePrincipalProperties()

Initializes a new instance of the ServicePrincipalProperties class.

public ServicePrincipalProperties ();
Public Sub New ()

Applies to

ServicePrincipalProperties(String, String)

Initializes a new instance of the ServicePrincipalProperties class.

public ServicePrincipalProperties (string applicationId = default, string secret = default);
new Microsoft.Azure.Management.Security.Models.ServicePrincipalProperties : string * string -> Microsoft.Azure.Management.Security.Models.ServicePrincipalProperties
Public Sub New (Optional applicationId As String = Nothing, Optional secret As String = Nothing)

Parameters

applicationId
String

Application ID of service principal.

secret
String

A secret string that the application uses to prove its identity, also can be referred to as application password (write only).

Applies to