FileAttachmentType.Content Property
The Content property gets or sets the Base64-encoded contents of the file attachment.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property Content As Byte()
Get
Set
'Usage
Dim instance As FileAttachmentType
Dim value As Byte()
value = instance.Content
instance.Content = value
public byte[] Content { get; set; }
Property Value
Type: []
The Content property returns an array of bytes that contain the Base64-encoded contents of the file attachment.
See Also