次の方法で共有


ClientSecretCredential コンストラクター

定義

オーバーロード

ClientSecretCredential()

モック作成用の保護されたコンストラクター。

ClientSecretCredential(String, String, String)

クライアント シークレットを使用して、Microsoft Entra ID に対する認証に必要な詳細を含む ClientSecretCredential のインスタンスを作成します。

ClientSecretCredential(String, String, String, ClientSecretCredentialOptions)

クライアント シークレットを使用して、Microsoft Entra ID に対する認証に必要な詳細を含む ClientSecretCredential のインスタンスを作成します。

ClientSecretCredential(String, String, String, TokenCredentialOptions)

クライアント シークレットを使用して、Microsoft Entra ID に対する認証に必要な詳細を含む ClientSecretCredential のインスタンスを作成します。

ClientSecretCredential()

モック作成用の保護されたコンストラクター。

protected ClientSecretCredential ();
Protected Sub New ()

適用対象

ClientSecretCredential(String, String, String)

クライアント シークレットを使用して、Microsoft Entra ID に対する認証に必要な詳細を含む ClientSecretCredential のインスタンスを作成します。

public ClientSecretCredential (string tenantId, string clientId, string clientSecret);
new Azure.Identity.ClientSecretCredential : string * string * string -> Azure.Identity.ClientSecretCredential
Public Sub New (tenantId As String, clientId As String, clientSecret As String)

パラメーター

tenantId
String

サービス プリンシパルの Azure Active Directory テナント (ディレクトリ) ID。

clientId
String

サービス プリンシパルのクライアント (アプリケーション) ID

clientSecret
String

クライアントの認証に使用されるアプリ登録用に生成されたクライアント シークレット。

適用対象

ClientSecretCredential(String, String, String, ClientSecretCredentialOptions)

クライアント シークレットを使用して、Microsoft Entra ID に対する認証に必要な詳細を含む ClientSecretCredential のインスタンスを作成します。

public ClientSecretCredential (string tenantId, string clientId, string clientSecret, Azure.Identity.ClientSecretCredentialOptions options);
new Azure.Identity.ClientSecretCredential : string * string * string * Azure.Identity.ClientSecretCredentialOptions -> Azure.Identity.ClientSecretCredential
Public Sub New (tenantId As String, clientId As String, clientSecret As String, options As ClientSecretCredentialOptions)

パラメーター

tenantId
String

サービス プリンシパルの Azure Active Directory テナント (ディレクトリ) ID。

clientId
String

サービス プリンシパルのクライアント (アプリケーション) ID

clientSecret
String

クライアントの認証に使用されるアプリ登録用に生成されたクライアント シークレット。

options
ClientSecretCredentialOptions

Azure Active Directory サービスに送信される要求の管理を構成できるオプション。

適用対象

ClientSecretCredential(String, String, String, TokenCredentialOptions)

クライアント シークレットを使用して、Microsoft Entra ID に対する認証に必要な詳細を含む ClientSecretCredential のインスタンスを作成します。

public ClientSecretCredential (string tenantId, string clientId, string clientSecret, Azure.Identity.TokenCredentialOptions options);
new Azure.Identity.ClientSecretCredential : string * string * string * Azure.Identity.TokenCredentialOptions -> Azure.Identity.ClientSecretCredential
Public Sub New (tenantId As String, clientId As String, clientSecret As String, options As TokenCredentialOptions)

パラメーター

tenantId
String

サービス プリンシパルの Azure Active Directory テナント (ディレクトリ) ID。

clientId
String

サービス プリンシパルのクライアント (アプリケーション) ID

clientSecret
String

クライアントの認証に使用されるアプリ登録用に生成されたクライアント シークレット。

options
TokenCredentialOptions

Azure Active Directory サービスに送信される要求の管理を構成できるオプション。

適用対象