MandatoryResource Simple Type

Defines a string type that must contain content.

<xs:simpleType name="MandatoryResource">
    <xs:restriction
        base="string"
    >
        <xs:maxLength
            value="1024"
         />
        <xs:minLength
            value="1"
         />
    </xs:restriction>
</xs:simpleType>

Remarks

The string must contain at least one character but no more than 1,024 characters.

Requirements

Minimum supported client
Windows 7 [desktop apps only]
Minimum supported server
Windows Server 2008 R2 [desktop apps only]

See also

DisplayInformation