BotFrameworkAuthenticationFactory.Create メソッド

定義

オーバーロード

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 インスタンス。

適用対象