Namespace:
Filename:
Content: appid (type: string) , appversion (type: string) ?, setname (type: string) ?, data (type: namevaluelist)
Description: The customdata tag provides a place in a usage
file for applications to store data specific to themselves. Well-behaved applications will
ignore but preserve such tags entered by other applications.
appid defines the id of the application to which the data is relevant.
Generally, this is the application that created the data in the first place.appversion defines the version of the application that created the data.setname defines the name of this particular set of data, if any.data contains a list of name/value pairs that hold the application
specific data.Code Fragment
<xs:complexType name="customdata">
<xs:sequence>
<xs:element type="xs:string" name="appid"/>
<xs:element type="xs:string" name="appversion" minOccurs="0" maxOccurs="1"/>
<xs:element type="xs:string" name="setname" minOccurs="0" maxOccurs="1"/>
<xs:element type="namevaluelist" name="data"/>
</xs:sequence>
</xs:complexType>