IWithAuthenticationProvider<ParentT>.WithActiveDirectory Method
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
WithActiveDirectory(String, String) |
Specifies the provider to be Active Directory and its client ID and issuer URL. |
WithActiveDirectory(String, String, String) |
Specifies the provider to be Active Directory and its client ID and issuer URL. |
WithActiveDirectory(String, String)
Specifies the provider to be Active Directory and its client ID and issuer URL.
public Microsoft.Azure.Management.AppService.Fluent.WebAppAuthentication.UpdateDefinition.IWithAttach<ParentT> WithActiveDirectory (string clientId, string issuerUrl);
abstract member WithActiveDirectory : string * string -> Microsoft.Azure.Management.AppService.Fluent.WebAppAuthentication.UpdateDefinition.IWithAttach<'ParentT>
Public Function WithActiveDirectory (clientId As String, issuerUrl As String) As IWithAttach(Of ParentT)
Parameters
- clientId
- String
The AAD app's client ID.
- issuerUrl
- String
The token issuer URL in the format of https://sts.windows.net/(tenantId).
Returns
Applies to
WithActiveDirectory(String, String, String)
Specifies the provider to be Active Directory and its client ID and issuer URL.
public Microsoft.Azure.Management.AppService.Fluent.WebAppAuthentication.UpdateDefinition.IWithAttach<ParentT> WithActiveDirectory (string clientId, string clientSecret, string issuerUrl);
abstract member WithActiveDirectory : string * string * string -> Microsoft.Azure.Management.AppService.Fluent.WebAppAuthentication.UpdateDefinition.IWithAttach<'ParentT>
Public Function WithActiveDirectory (clientId As String, clientSecret As String, issuerUrl As String) As IWithAttach(Of ParentT)
Parameters
- clientId
- String
The AAD app's client ID.
- clientSecret
- String
The AAD app's client secret.
- issuerUrl
- String
The token issuer URL in the format of https://sts.windows.net/(tenantId).
Returns
Applies to
Azure SDK for .NET