2.2.4.118 FileAttribute

The FileAttribute complex type represents the attribute of file.

The following is the XML schema definition of the FileAttribute complex type.

 <xs:complexType name="FileAttribute">
   <xs:complexContent mixed="false">
     <xs:extension xmlns:q999="http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09" base="q999:DataContractBase">
       <xs:sequence>
         <xs:element minOccurs="0" name="Content" nillable="true" type="xs:base64Binary" />
         <xs:element minOccurs="0" name="ContentType" nillable="true" type="xs:string" />
         <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
       </xs:sequence>
     </xs:extension>
   </xs:complexContent>
 </xs:complexType>

Content: Specifies the binary contents of the file.

ContentType: Specifies the content type of the file that is or will be stored.

Name: Specifies the actual name of the file that is or will be stored.