MicrosoftAppCredentials コンストラクター

定義

オーバーロード

名前 説明
MicrosoftAppCredentials(String, String, HttpClient, ILogger, String)

MicrosoftAppCredentials クラスの新しいインスタンスを初期化します。

MicrosoftAppCredentials(String, String, String, HttpClient, ILogger, String)

MicrosoftAppCredentials クラスの新しいインスタンスを初期化します。

MicrosoftAppCredentials(String, String, HttpClient, ILogger, String)

MicrosoftAppCredentials クラスの新しいインスタンスを初期化します。

public MicrosoftAppCredentials(string appId, string password, System.Net.Http.HttpClient customHttpClient = default, Microsoft.Extensions.Logging.ILogger logger = default, string oAuthScope = default);
new Microsoft.Bot.Connector.Authentication.MicrosoftAppCredentials : string * string * System.Net.Http.HttpClient * Microsoft.Extensions.Logging.ILogger * string -> Microsoft.Bot.Connector.Authentication.MicrosoftAppCredentials
Public Sub New (appId As String, password As String, Optional customHttpClient As HttpClient = Nothing, Optional logger As ILogger = Nothing, Optional oAuthScope As String = Nothing)

パラメーター

appId
String

Microsoft アプリ ID。

password
String

Microsoft アプリのパスワード。

customHttpClient
HttpClient

トークン取得時に使うオプション HttpClient

logger
ILogger

認証情報の取得・管理中にテレメトリデータを収集するためのオプションの ILogger

oAuthScope
String

トークンのスコープ。

適用対象

MicrosoftAppCredentials(String, String, String, HttpClient, ILogger, String)

MicrosoftAppCredentials クラスの新しいインスタンスを初期化します。

public MicrosoftAppCredentials(string appId, string password, string channelAuthTenant, System.Net.Http.HttpClient customHttpClient = default, Microsoft.Extensions.Logging.ILogger logger = default, string oAuthScope = default);
new Microsoft.Bot.Connector.Authentication.MicrosoftAppCredentials : string * string * string * System.Net.Http.HttpClient * Microsoft.Extensions.Logging.ILogger * string -> Microsoft.Bot.Connector.Authentication.MicrosoftAppCredentials
Public Sub New (appId As String, password As String, channelAuthTenant As String, Optional customHttpClient As HttpClient = Nothing, Optional logger As ILogger = Nothing, Optional oAuthScope As String = Nothing)

パラメーター

appId
String

Microsoft アプリ ID。

password
String

Microsoft アプリのパスワード。

channelAuthTenant
String

随意。 oauth トークン テナント。

customHttpClient
HttpClient

トークン取得時に使うオプション HttpClient

logger
ILogger

認証情報の取得・管理中にテレメトリデータを収集するためのオプションの ILogger

oAuthScope
String

トークンのスコープ。

適用対象