AttachmentInfo Constructors

Definition

Overloads

AttachmentInfo()

Initializes a new instance of the AttachmentInfo class.

AttachmentInfo(String, String, IList<AttachmentView>)

Initializes a new instance of the AttachmentInfo class.

AttachmentInfo()

Initializes a new instance of the AttachmentInfo class.

public AttachmentInfo ();
Public Sub New ()

Applies to

AttachmentInfo(String, String, IList<AttachmentView>)

Initializes a new instance of the AttachmentInfo class.

public AttachmentInfo (string name = default, string type = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.AttachmentView> views = default);
new Microsoft.Bot.Schema.AttachmentInfo : string * string * System.Collections.Generic.IList<Microsoft.Bot.Schema.AttachmentView> -> Microsoft.Bot.Schema.AttachmentInfo
Public Sub New (Optional name As String = Nothing, Optional type As String = Nothing, Optional views As IList(Of AttachmentView) = Nothing)

Parameters

name
String

Name of the attachment.

type
String

ContentType of the attachment.

views
IList<AttachmentView>

attachment views.

Applies to