次の方法で共有


ChoiceFactory.ForChannel メソッド

定義

オーバーロード

ForChannel(String, IList<Choice>, String, String, ChoiceFactoryOptions)

特定のチャネルの機能に基づいて書式設定された選択肢の一覧を含むメッセージ アクティビティを作成します。

ForChannel(String, IList<Choice>, String, String, ChoiceFactoryOptions, String, IList<String>)

特定のチャネルの機能に基づいて書式設定された選択肢の一覧を含むメッセージ アクティビティを作成します。

ForChannel(String, IList<Choice>, String, String, ChoiceFactoryOptions)

特定のチャネルの機能に基づいて書式設定された選択肢の一覧を含むメッセージ アクティビティを作成します。

public static Microsoft.Bot.Schema.IMessageActivity ForChannel (string channelId, System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> list, string text = default, string speak = default, Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions options = default);
static member ForChannel : string * System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> * string * string * Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions -> Microsoft.Bot.Schema.IMessageActivity
Public Shared Function ForChannel (channelId As String, list As IList(Of Choice), Optional text As String = Nothing, Optional speak As String = Nothing, Optional options As ChoiceFactoryOptions = Nothing) As IMessageActivity

パラメーター

channelId
String

チャネル ID。 Channels クラスには、既知のチャネル ID が含まれています。

list
IList<Choice>

含める選択肢の一覧。

text
String

省略可能。送信するメッセージのテキスト。

speak
String

オプション。音声対応チャネルでボットによって読み上げるテキスト。

options
ChoiceFactoryOptions

オプション。リストとしてレンダリングするときに使用する書式設定オプション。

戻り値

作成されたメッセージ アクティビティ。

注釈

アルゴリズムは、指定された選択肢のリストを推奨アクションとして書式設定することを好みますが、推奨されるアクションがチャネルでネイティブにサポートされていない場合、チャネルで表示する選択肢が多すぎる、または任意のタイトルが長すぎる場合は、テキスト ベースのリストを使用することを決定できます。

アルゴリズムがリストを使用することを決定した場合、短いタイトルで3つ以下の選択肢のためにインラインリストを使用します。それ以外の場合は、番号付きリストです。

適用対象

ForChannel(String, IList<Choice>, String, String, ChoiceFactoryOptions, String, IList<String>)

特定のチャネルの機能に基づいて書式設定された選択肢の一覧を含むメッセージ アクティビティを作成します。

public static Microsoft.Bot.Schema.IMessageActivity ForChannel (string channelId, System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> list, string text = default, string speak = default, Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions options = default, string conversationType = default, System.Collections.Generic.IList<string> toList = default);
static member ForChannel : string * System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> * string * string * Microsoft.Bot.Builder.Dialogs.Choices.ChoiceFactoryOptions * string * System.Collections.Generic.IList<string> -> Microsoft.Bot.Schema.IMessageActivity
Public Shared Function ForChannel (channelId As String, list As IList(Of Choice), Optional text As String = Nothing, Optional speak As String = Nothing, Optional options As ChoiceFactoryOptions = Nothing, Optional conversationType As String = Nothing, Optional toList As IList(Of String) = Nothing) As IMessageActivity

パラメーター

channelId
String

チャネル ID。 Channels クラスには、既知のチャネル ID が含まれています。

list
IList<Choice>

含める選択肢の一覧。

text
String

省略可能。送信するメッセージのテキスト。

speak
String

オプション。音声対応チャネルでボットによって読み上げるテキスト。

options
ChoiceFactoryOptions

オプション。リストとしてレンダリングするときに使用する書式設定オプション。

conversationType
String

省略可能。会話の種類。

toList
IList<String>

省略可能。受信者の一覧です。

戻り値

作成されたメッセージ アクティビティ。

注釈

アルゴリズムは、指定された選択肢のリストを推奨アクションとして書式設定することを好みますが、推奨されるアクションがチャネルでネイティブにサポートされていない場合、チャネルで表示する選択肢が多すぎる、または任意のタイトルが長すぎる場合は、テキスト ベースのリストを使用することを決定できます。

アルゴリズムがリストを使用することを決定した場合、短いタイトルで3つ以下の選択肢のためにインラインリストを使用します。それ以外の場合は、番号付きリストです。

適用対象