VideoCard コンストラクター

定義

オーバーロード

名前 説明
VideoCard()

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

VideoCard(String, String, String, ThumbnailUrl, IList<MediaUrl>, IList<CardAction>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, String, Object, String)

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

VideoCard()

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

public VideoCard();
Public Sub New ()

適用対象

VideoCard(String, String, String, ThumbnailUrl, IList<MediaUrl>, IList<CardAction>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, String, Object, String)

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

public VideoCard(string title = default, string subtitle = default, string text = default, Microsoft.Bot.Schema.ThumbnailUrl image = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.MediaUrl> media = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> buttons = default, bool? shareable = default, bool? autoloop = default, bool? autostart = default, string aspect = default, object value = default, string duration = default);
new Microsoft.Bot.Schema.VideoCard : string * string * string * Microsoft.Bot.Schema.ThumbnailUrl * System.Collections.Generic.IList<Microsoft.Bot.Schema.MediaUrl> * System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> * Nullable<bool> * Nullable<bool> * Nullable<bool> * string * obj * string -> Microsoft.Bot.Schema.VideoCard
Public Sub New (Optional title As String = Nothing, Optional subtitle As String = Nothing, Optional text As String = Nothing, Optional image As ThumbnailUrl = Nothing, Optional media As IList(Of MediaUrl) = Nothing, Optional buttons As IList(Of CardAction) = Nothing, Optional shareable As Nullable(Of Boolean) = Nothing, Optional autoloop As Nullable(Of Boolean) = Nothing, Optional autostart As Nullable(Of Boolean) = Nothing, Optional aspect As String = Nothing, Optional value As Object = Nothing, Optional duration As String = Nothing)

パラメーター

title
String

このカードのタイトルです。

subtitle
String

このカードのサブタイトル。

text
String

このカードの本文。

image
ThumbnailUrl

サムネイルの仮の位置です。

media
IList<MediaUrl>

このカードのメディア URL。 このフィールドに複数の URL が含まれている場合、各 URL は同じコンテンツの代替形式になります。

buttons
IList<CardAction>

このカードの行動。

shareable
Nullable<Boolean>

このコンテンツは他者と共有される場合があります(default:true)。

autoloop
Nullable<Boolean>

クライアントはコンテンツ終了時に再生をループさせるべきでしょうか(default:true)。

autostart
Nullable<Boolean>

クライアントはこのカード内のメディア再生を自動的に開始すべきでしょうか(default:true)。

aspect
String

サムネイル/メディア プレースホルダーの縦横比。 使用できる値は、"16:9" と "4:3" です。

value
Object

このカードの補助パラメーター。

duration
String

受信者がコンテンツを開かなくても、メディア コンテンツの長さを説明します。 ISO 8601 期間フィールドとして書式設定されます。

適用対象