共用方式為


SlackAdapter 類別

定義

警告

The Bot Framework Adapters will be deprecated in the next version of the Bot Framework SDK and moved to https://github.com/BotBuilderCommunity/botbuilder-community-dotnet. Please refer to their new location for all future work.

[System.Obsolete("The Bot Framework Adapters will be deprecated in the next version of the Bot Framework SDK and moved to https://github.com/BotBuilderCommunity/botbuilder-community-dotnet. Please refer to their new location for all future work.")]
public class SlackAdapter : Microsoft.Bot.Builder.BotAdapter, Microsoft.Bot.Builder.Integration.AspNet.Core.IBotFrameworkHttpAdapter
[<System.Obsolete("The Bot Framework Adapters will be deprecated in the next version of the Bot Framework SDK and moved to https://github.com/BotBuilderCommunity/botbuilder-community-dotnet. Please refer to their new location for all future work.")>]
type SlackAdapter = class
    inherit BotAdapter
    interface IBotFrameworkHttpAdapter
Public Class SlackAdapter
Inherits BotAdapter
Implements IBotFrameworkHttpAdapter
繼承
SlackAdapter
屬性
實作

建構函式

SlackAdapter(IConfiguration, SlackAdapterOptions, ILogger)
已淘汰.

使用組態設定, SlackAdapter 初始化 類別的新實例。

SlackAdapter(SlackClientWrapper, SlackAdapterOptions, ILogger)
已淘汰.

初始化 SlackAdapter 類別的新執行個體。 建立 Slack 配接器。

欄位

BotIdentityKey
已淘汰.

Bot 識別金鑰的字串值。

(繼承來源 BotAdapter)
InvokeResponseKey
已淘汰.

任何會位於 TurnState 上的 InvokeResponseActivity 索引鍵值。

(繼承來源 BotAdapter)
OAuthScopeKey
已淘汰.

OAuth 範圍金鑰的字串值。

(繼承來源 BotAdapter)

屬性

MiddlewareSet
已淘汰.

取得配接器管線中的中介軟體集合。

(繼承來源 BotAdapter)
OnTurnError
已淘汰.

取得或設定錯誤處理常式,這個處理常式可以攔截中介軟體或應用程式中的例外狀況。

(繼承來源 BotAdapter)

方法

ContinueConversationAsync(ClaimsIdentity, Activity, BotCallbackHandler, CancellationToken)
已淘汰.

將主動式訊息傳送至交談。

(繼承來源 BotAdapter)
ContinueConversationAsync(ClaimsIdentity, Activity, String, BotCallbackHandler, CancellationToken)
已淘汰.

將主動式訊息傳送至交談。

(繼承來源 BotAdapter)
ContinueConversationAsync(ClaimsIdentity, ConversationReference, BotCallbackHandler, CancellationToken)
已淘汰.

將主動式訊息從 Bot 傳送至交談。

ContinueConversationAsync(ClaimsIdentity, ConversationReference, String, BotCallbackHandler, CancellationToken)
已淘汰.

將主動式訊息傳送至交談。

(繼承來源 BotAdapter)
ContinueConversationAsync(ConversationReference, BotCallbackHandler, CancellationToken)
已淘汰.

標準 BotBuilder 配接器方法,可根據交談參考繼續現有的交談。

ContinueConversationAsync(String, Activity, BotCallbackHandler, CancellationToken)
已淘汰.

將主動式訊息傳送至交談。

(繼承來源 BotAdapter)
ContinueConversationAsync(String, ConversationReference, BotCallbackHandler, CancellationToken)
已淘汰.

將主動式訊息傳送至交談。

(繼承來源 BotAdapter)
CreateConversationAsync(String, String, String, String, ConversationParameters, BotCallbackHandler, CancellationToken)
已淘汰.

在指定的通道上建立交談。

(繼承來源 BotAdapter)
DeleteActivityAsync(ITurnContext, ConversationReference, CancellationToken)
已淘汰.

用來刪除先前訊息的標準 BotBuilder 配接器方法。

ProcessActivityAsync(ClaimsIdentity, Activity, BotCallbackHandler, CancellationToken)
已淘汰.

建立回合內容,並執行傳入 TRUSTED 活動的中介軟體管線。

(繼承來源 BotAdapter)
ProcessAsync(HttpRequest, HttpResponse, IBot, CancellationToken)
已淘汰.

接受傳入的 Webhook 要求,並將其轉換成 TurnCoNtext,可由 Bot 的邏輯處理。

RunPipelineAsync(ITurnContext, BotCallbackHandler, CancellationToken)
已淘汰.

啟動目前 Bot 回合的活動處理。

(繼承來源 BotAdapter)
SendActivitiesAsync(ITurnContext, Activity[], CancellationToken)
已淘汰.

標準 BotBuilder 配接器方法,可將訊息從 Bot 傳送至傳訊 API。

UpdateActivityAsync(ITurnContext, Activity, CancellationToken)
已淘汰.

使用新內容更新先前訊息的標準 BotBuilder 配接器方法。

Use(IMiddleware)
已淘汰.

將中介軟體新增至配接器的管線。

(繼承來源 BotAdapter)

擴充方法

UseBotState(BotAdapter, BotState[])
已淘汰.

將中介軟體新增至配接器,以在回合內容上註冊一或多個 BotState 物件。 中介軟體會在每次回合開始時,于回合內容上註冊狀態物件。

UseState(BotAdapter, UserState, ConversationState, Boolean)
已淘汰.

向配接器註冊使用者和交談狀態物件。 這些物件可透過回合內容的 . TurnStateGet<T>() 方法取得。

UseStorage(BotAdapter, IStorage)
已淘汰.

將中介軟體新增至配接器,以在回合內容上註冊 IStorage 物件。 中介軟體會在每次回合開始時,于回合內容上註冊狀態物件。

適用於