次の方法で共有


SuggestedActions コンストラクター

定義

オーバーロード

SuggestedActions()

SuggestedActions クラスの新しいインスタンスを初期化します。

SuggestedActions(IEnumerable<String>, IEnumerable<CardAction>)

SuggestedActions クラスの新しいインスタンスを初期化します。

SuggestedActions(IList<String>, IList<CardAction>)

SuggestedActions クラスの新しいインスタンスを初期化します。

SuggestedActions()

SuggestedActions クラスの新しいインスタンスを初期化します。

public SuggestedActions ();
Public Sub New ()

適用対象

SuggestedActions(IEnumerable<String>, IEnumerable<CardAction>)

SuggestedActions クラスの新しいインスタンスを初期化します。

public SuggestedActions (System.Collections.Generic.IEnumerable<string> to, System.Collections.Generic.IEnumerable<Microsoft.Bot.Schema.CardAction> actions);
new Microsoft.Bot.Schema.SuggestedActions : seq<string> * seq<Microsoft.Bot.Schema.CardAction> -> Microsoft.Bot.Schema.SuggestedActions
Public Sub New (to As IEnumerable(Of String), actions As IEnumerable(Of CardAction))

パラメーター

to
IEnumerable<String>

アクションを表示する受信者の ID。 これらの ID は、channelId とアクティビティのすべての受信者のサブセットに対して相対的です。

actions
IEnumerable<CardAction>

ユーザーに表示できるアクション。

例外

ArgumentNullException。

適用対象

SuggestedActions(IList<String>, IList<CardAction>)

SuggestedActions クラスの新しいインスタンスを初期化します。

public SuggestedActions (System.Collections.Generic.IList<string> to = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> actions = default);
new Microsoft.Bot.Schema.SuggestedActions : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> -> Microsoft.Bot.Schema.SuggestedActions
Public Sub New (Optional to As IList(Of String) = Nothing, Optional actions As IList(Of CardAction) = Nothing)

パラメーター

to
IList<String>

アクションを表示する受信者の ID。 これらの ID は、channelId とアクティビティのすべての受信者のサブセットに対して相対的です。

actions
IList<CardAction>

ユーザーに表示できるアクション。

適用対象