BotFrameworkAuthenticationFactory.Create メソッド

定義

オーバーロード

Create()

BotFrameworkAuthentication匿名テスト シナリオ用の インスタンスを作成します。

Create(String, Boolean, String, String, String, String, String, String, String, ServiceClientCredentialsFactory, AuthenticationConfiguration, IHttpClientFactory, ILogger)

適切な BotFrameworkAuthentication インスタンスを作成します。

Create()

BotFrameworkAuthentication匿名テスト シナリオ用の インスタンスを作成します。

public static Microsoft.Bot.Connector.Authentication.BotFrameworkAuthentication Create ();
static member Create : unit -> Microsoft.Bot.Connector.Authentication.BotFrameworkAuthentication
Public Shared Function Create () As BotFrameworkAuthentication

戻り値

新しい BotFrameworkAuthentication インスタンス。

適用対象

Create(String, Boolean, String, String, String, String, String, String, String, ServiceClientCredentialsFactory, AuthenticationConfiguration, IHttpClientFactory, ILogger)

適切な BotFrameworkAuthentication インスタンスを作成します。

public static Microsoft.Bot.Connector.Authentication.BotFrameworkAuthentication Create (string channelService, bool validateAuthority, string toChannelFromBotLoginUrl, string toChannelFromBotOAuthScope, string toBotFromChannelTokenIssuer, string oAuthUrl, string toBotFromChannelOpenIdMetadataUrl, string toBotFromEmulatorOpenIdMetadataUrl, string callerId, Microsoft.Bot.Connector.Authentication.ServiceClientCredentialsFactory credentialFactory, Microsoft.Bot.Connector.Authentication.AuthenticationConfiguration authConfiguration, System.Net.Http.IHttpClientFactory httpClientFactory, Microsoft.Extensions.Logging.ILogger logger);
static member Create : string * bool * string * string * string * string * string * string * string * Microsoft.Bot.Connector.Authentication.ServiceClientCredentialsFactory * Microsoft.Bot.Connector.Authentication.AuthenticationConfiguration * System.Net.Http.IHttpClientFactory * Microsoft.Extensions.Logging.ILogger -> Microsoft.Bot.Connector.Authentication.BotFrameworkAuthentication
Public Shared Function Create (channelService As String, validateAuthority As Boolean, toChannelFromBotLoginUrl As String, toChannelFromBotOAuthScope As String, toBotFromChannelTokenIssuer As String, oAuthUrl As String, toBotFromChannelOpenIdMetadataUrl As String, toBotFromEmulatorOpenIdMetadataUrl As String, callerId As String, credentialFactory As ServiceClientCredentialsFactory, authConfiguration As AuthenticationConfiguration, httpClientFactory As IHttpClientFactory, logger As ILogger) As BotFrameworkAuthentication

パラメーター

channelService
String

チャネル サービス。

validateAuthority
Boolean

使用する権限の検証値。

toChannelFromBotLoginUrl
String

ボットのログイン URL からチャネルへの 。

toChannelFromBotOAuthScope
String

ボット oauth スコープからチャネルへの 。

toBotFromChannelTokenIssuer
String

チャネル トークン発行者からボットへの 。

oAuthUrl
String

oAuth URL。

toBotFromChannelOpenIdMetadataUrl
String

Channel Open Id メタデータ URL からボットに対する 。

toBotFromEmulatorOpenIdMetadataUrl
String

エミュレーターの Open Id メタデータ URL からボットに対する 。

callerId
String

Microsoft アプリのパスワード。

credentialFactory
ServiceClientCredentialsFactory

ServiceClientCredentialsFactory資格情報の作成に使用する 。

authConfiguration
AuthenticationConfiguration

使用する AuthenticationConfiguration

httpClientFactory
IHttpClientFactory

使用する IHttpClientFactory

logger
ILogger

使用する ILogger

戻り値

新しい BotFrameworkAuthentication インスタンス。

適用対象