Attachment コンストラクター

定義

オーバーロード

名前 説明
Attachment()

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

Attachment(String, String, Object, String, String)

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

Attachment()

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

public Attachment();
Public Sub New ()

適用対象

Attachment(String, String, Object, String, String)

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

public Attachment(string contentType = default, string contentUrl = default, object content = default, string name = default, string thumbnailUrl = default);
new Microsoft.Bot.Schema.Attachment : string * string * obj * string * string -> Microsoft.Bot.Schema.Attachment
Public Sub New (Optional contentType As String = Nothing, Optional contentUrl As String = Nothing, Optional content As Object = Nothing, Optional name As String = Nothing, Optional thumbnailUrl As String = Nothing)

パラメーター

contentType
String

ファイル用のmimetype/ContentTypeです。

contentUrl
String

コンテンツURL。

content
Object

埋め込みコンテンツ。

name
String

(任意)そのアタッチメントの名前です。

thumbnailUrl
String

(任意)アタッチメントに関連するサムネイル。

適用対象