AzureActiveDirectoryRegistration Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AzureActiveDirectoryRegistration() |
Initializes a new instance of the AzureActiveDirectoryRegistration class. |
AzureActiveDirectoryRegistration(String, String, String, String, String, String) |
Initializes a new instance of the AzureActiveDirectoryRegistration class. |
AzureActiveDirectoryRegistration()
Initializes a new instance of the AzureActiveDirectoryRegistration class.
public AzureActiveDirectoryRegistration ();
Public Sub New ()
Applies to
AzureActiveDirectoryRegistration(String, String, String, String, String, String)
Initializes a new instance of the AzureActiveDirectoryRegistration class.
public AzureActiveDirectoryRegistration (string openIdIssuer = default, string clientId = default, string clientSecretSettingName = default, string clientSecretCertificateThumbprint = default, string clientSecretCertificateSubjectAlternativeName = default, string clientSecretCertificateIssuer = default);
new Microsoft.Azure.Management.WebSites.Models.AzureActiveDirectoryRegistration : string * string * string * string * string * string -> Microsoft.Azure.Management.WebSites.Models.AzureActiveDirectoryRegistration
Public Sub New (Optional openIdIssuer As String = Nothing, Optional clientId As String = Nothing, Optional clientSecretSettingName As String = Nothing, Optional clientSecretCertificateThumbprint As String = Nothing, Optional clientSecretCertificateSubjectAlternativeName As String = Nothing, Optional clientSecretCertificateIssuer As String = Nothing)
Parameters
- openIdIssuer
- String
The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application. When using Azure Active Directory, this value is the URI of the directory tenant, e.g. https://login.microsoftonline.com/v2.0/{tenant-guid}/. This URI is a case-sensitive identifier for the token issuer. More information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html
- clientId
- String
The Client ID of this relying party application, known as the client_id. This setting is required for enabling OpenID Connection authentication with Azure Active Directory or other 3rd party OpenID Connect providers. More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html
- clientSecretSettingName
- String
The app setting name that contains the client secret of the relying party application.
- clientSecretCertificateThumbprint
- String
An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as a replacement for the Client Secret. It is also optional.
- clientSecretCertificateSubjectAlternativeName
- String
An alternative to the client secret thumbprint, that is the subject alternative name of a certificate used for signing purposes. This property acts as a replacement for the Client Secret Certificate Thumbprint. It is also optional.
- clientSecretCertificateIssuer
- String
An alternative to the client secret thumbprint, that is the issuer of a certificate used for signing purposes. This property acts as a replacement for the Client Secret Certificate Thumbprint. It is also optional.
Applies to
Azure SDK for .NET