ChoiceFactory.ForChannel メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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
パラメーター
- 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
パラメーター
- text
- String
省略可能。送信するメッセージのテキスト。
- speak
- String
オプション。音声対応チャネルでボットによって読み上げるテキスト。
- options
- ChoiceFactoryOptions
オプション。リストとしてレンダリングするときに使用する書式設定オプション。
- conversationType
- String
省略可能。会話の種類。
戻り値
作成されたメッセージ アクティビティ。
注釈
アルゴリズムは、指定された選択肢のリストを推奨アクションとして書式設定することを好みますが、推奨されるアクションがチャネルでネイティブにサポートされていない場合、チャネルで表示する選択肢が多すぎる、または任意のタイトルが長すぎる場合は、テキスト ベースのリストを使用することを決定できます。
アルゴリズムがリストを使用することを決定した場合、短いタイトルで3つ以下の選択肢のためにインラインリストを使用します。それ以外の場合は、番号付きリストです。