次の方法で共有


Activity.ApplyConversationReference(ConversationReference, Boolean) メソッド

定義

既存の ConversationReferenceからの配信情報でこのアクティビティを更新します。

public Microsoft.Bot.Schema.Activity ApplyConversationReference (Microsoft.Bot.Schema.ConversationReference reference, bool isIncoming = false);
abstract member ApplyConversationReference : Microsoft.Bot.Schema.ConversationReference * bool -> Microsoft.Bot.Schema.Activity
override this.ApplyConversationReference : Microsoft.Bot.Schema.ConversationReference * bool -> Microsoft.Bot.Schema.Activity
Public Function ApplyConversationReference (reference As ConversationReference, Optional isIncoming As Boolean = false) As Activity

パラメーター

reference
ConversationReference

既存の会話参照。

isIncoming
Boolean

省略可能 true、ボットが受信者である受信アクティビティとしてアクティビティを処理します。それ以外の場合は、falseします。 既定値は falseであり、アクティビティによってボットが送信者として表示されます。

戻り値

このアクティビティは、配信情報で更新されます。

実装

注釈

受信アクティビティの GetConversationReference() を呼び出して会話参照を取得します。この参照を使用して、正しい配信情報で送信アクティビティを更新できます。

適用対象