Sdílet prostřednictvím


WebexAdapter Konstruktory

Definice

Přetížení

WebexAdapter(WebexClientWrapper, WebexAdapterOptions, ILogger)

Inicializuje novou instanci WebexAdapter třídy . Vytvoří adaptér Webex.

WebexAdapter(IConfiguration, WebexAdapterOptions, ILogger)

Inicializuje novou instanci WebexAdapter třídy pomocí nastavení konfigurace.

WebexAdapter(WebexClientWrapper, WebexAdapterOptions, ILogger)

Inicializuje novou instanci WebexAdapter třídy . Vytvoří adaptér Webex.

public WebexAdapter (Microsoft.Bot.Builder.Adapters.Webex.WebexClientWrapper webexClient, Microsoft.Bot.Builder.Adapters.Webex.WebexAdapterOptions options, Microsoft.Extensions.Logging.ILogger logger = default);
new Microsoft.Bot.Builder.Adapters.Webex.WebexAdapter : Microsoft.Bot.Builder.Adapters.Webex.WebexClientWrapper * Microsoft.Bot.Builder.Adapters.Webex.WebexAdapterOptions * Microsoft.Extensions.Logging.ILogger -> Microsoft.Bot.Builder.Adapters.Webex.WebexAdapter
Public Sub New (webexClient As WebexClientWrapper, options As WebexAdapterOptions, Optional logger As ILogger = Nothing)

Parametry

webexClient
WebexClientWrapper

Rozhraní Webex API.

logger
ILogger

Implementace ILoggeru, který by měl tento adaptér používat.

Platí pro

WebexAdapter(IConfiguration, WebexAdapterOptions, ILogger)

Inicializuje novou instanci WebexAdapter třídy pomocí nastavení konfigurace.

public WebexAdapter (Microsoft.Extensions.Configuration.IConfiguration configuration, Microsoft.Bot.Builder.Adapters.Webex.WebexAdapterOptions options = default, Microsoft.Extensions.Logging.ILogger logger = default);
new Microsoft.Bot.Builder.Adapters.Webex.WebexAdapter : Microsoft.Extensions.Configuration.IConfiguration * Microsoft.Bot.Builder.Adapters.Webex.WebexAdapterOptions * Microsoft.Extensions.Logging.ILogger -> Microsoft.Bot.Builder.Adapters.Webex.WebexAdapter
Public Sub New (configuration As IConfiguration, Optional options As WebexAdapterOptions = Nothing, Optional logger As ILogger = Nothing)

Parametry

configuration
IConfiguration

Instance IConfiguration .

logger
ILogger

Implementace ILoggeru, který by měl tento adaptér používat.

Poznámky

Konfigurační klíče jsou: WebexAccessToken: Přístupový token pro robota. WebexPublicAddress: Kořenová adresa URL aplikace robota. WebexSecret: Tajný kód používaný k ověření příchozích webhooků. WebexWebhookName: Název předplatného webhooku.

Platí pro