AttachmentData Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AttachmentData() |
Initializes a new instance of the AttachmentData class. |
AttachmentData(String, String, Byte[], Byte[]) |
Initializes a new instance of the AttachmentData class. |
AttachmentData()
Initializes a new instance of the AttachmentData class.
public AttachmentData ();
Public Sub New ()
Applies to
AttachmentData(String, String, Byte[], Byte[])
Initializes a new instance of the AttachmentData class.
public AttachmentData (string type = default, string name = default, byte[] originalBase64 = default, byte[] thumbnailBase64 = default);
new Microsoft.Bot.Schema.AttachmentData : string * string * byte[] * byte[] -> Microsoft.Bot.Schema.AttachmentData
Public Sub New (Optional type As String = Nothing, Optional name As String = Nothing, Optional originalBase64 As Byte() = Nothing, Optional thumbnailBase64 As Byte() = Nothing)
Parameters
- type
- String
Content-Type of the attachment.
- name
- String
Name of the attachment.
- originalBase64
- Byte[]
Attachment content.
- thumbnailBase64
- Byte[]
Attachment thumbnail.