FileBufferBase64

Description

The FileBufferBase64 type holds the actual contents of a file that you upload to the server in Base64. The FileBufferBase64 type parameters are listed below.

Parameters

Name Type Description
data base64Binary Holds the Base64 encoded contents of the file.

Usage

None.

XML

The following XML is a snippet of the FileBufferBase64 type.

<ae:GetFileAttachmentResponse>
   <ae:return xsi:type="ae:FileAttachmentContents">
      <ae:id>104</ae:id>
      <ae:name>my attachment</ae:name>
      <ae:fileName>fileName.txt</ae:fileName>
      <ae:showAsImage>false</ae:showAsImage>
      <ae:modificationDateTime>2010-09-17T18:46:25Z</ae:modificationDateTime>
      <ae:accessType>ATTACHACCESS-RESTRICTED</ae:accessType>
      <ae:contentsBase64>
         <ae:data>c2FtcGxlIGZpbGUgYXR0YWNobWVudA==</ae:data>
      </ae:contentsBase64>
   </ae:return>
</ae:GetFileAttachmentResponse>