共用方式為


DeleteActivityHandler type

處理常式,可參與目前回合的刪除活動事件。

type DeleteActivityHandler = (
  context: TurnContext,
  reference: Partial<ConversationReference>,
  next: () => Promise<void>
) => Promise<void>

備註

參數

名稱 類型 Description
context TurnCoNtext 回合的內容物件。
reference 部分 <ConversationReference> 包含要刪除之活動的交談。
next () = > Promise < void> 要呼叫 以繼續處理事件的函式。

處理常式會呼叫 函式, next 以將控制項傳遞至下一個已註冊的處理常式。 如果處理常式未呼叫 next 函式,配接器不會呼叫任何後續的處理常式,也不會嘗試刪除活動。

參數 referenceactivityId 屬性會指出要刪除之交談中的哪個活動。

另請參閱