Namespace:
Filename:
Content: name (type: string) , value (type: string) , type (type: datatype) ?
Description: The namevaluepair
tag defines a list
of name/value pairs.
name
defines the name of this data item.value
defines the value of this data item.type
defines the type of this data item. If not supplied, the
type is assumed to be "string".Code Fragment
<xs:complexType name="namevaluepair">
<xs:sequence>
<xs:element type="xs:string" name="name"/>
<xs:element type="xs:string" name="value"/>
<xs:element type="datatype" name="type" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>