CloudAdapter コンストラクター

定義

オーバーロード

CloudAdapter()

CloudAdapter クラスの新しいインスタンスを初期化します。 (パブリック クラウド。認証なし。テスト用)。

CloudAdapter(BotFrameworkAuthentication, ILogger)

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

CloudAdapter(IConfiguration, IHttpClientFactory, ILogger)

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

CloudAdapter()

CloudAdapter クラスの新しいインスタンスを初期化します。 (パブリック クラウド。認証なし。テスト用)。

public CloudAdapter ();
Public Sub New ()

適用対象

CloudAdapter(BotFrameworkAuthentication, ILogger)

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

public CloudAdapter (Microsoft.Bot.Connector.Authentication.BotFrameworkAuthentication botFrameworkAuthentication, Microsoft.Extensions.Logging.ILogger logger = default);
new Microsoft.Bot.Builder.Integration.AspNet.Core.CloudAdapter : Microsoft.Bot.Connector.Authentication.BotFrameworkAuthentication * Microsoft.Extensions.Logging.ILogger -> Microsoft.Bot.Builder.Integration.AspNet.Core.CloudAdapter
Public Sub New (botFrameworkAuthentication As BotFrameworkAuthentication, Optional logger As ILogger = Nothing)

パラメーター

botFrameworkAuthentication
BotFrameworkAuthentication

このアダプターで BotFrameworkAuthentication 使用する必要があります。

logger
ILogger

このアダプターで ILogger 使用する必要がある実装。

適用対象

CloudAdapter(IConfiguration, IHttpClientFactory, ILogger)

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

public CloudAdapter (Microsoft.Extensions.Configuration.IConfiguration configuration, System.Net.Http.IHttpClientFactory httpClientFactory = default, Microsoft.Extensions.Logging.ILogger logger = default);
new Microsoft.Bot.Builder.Integration.AspNet.Core.CloudAdapter : Microsoft.Extensions.Configuration.IConfiguration * System.Net.Http.IHttpClientFactory * Microsoft.Extensions.Logging.ILogger -> Microsoft.Bot.Builder.Integration.AspNet.Core.CloudAdapter
Public Sub New (configuration As IConfiguration, Optional httpClientFactory As IHttpClientFactory = Nothing, Optional logger As ILogger = Nothing)

パラメーター

configuration
IConfiguration

IConfiguration インスタンス。

httpClientFactory
IHttpClientFactory

このアダプターで IHttpClientFactory 使用する必要があります。

logger
ILogger

このアダプターで ILogger 使用する必要がある実装。

適用対象