Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Defines a string that you use to specify a version value.
<xs:simpleType name="Version">
    <xs:restriction
        base="xs:string"
    >
        <xs:maxLength
            value="256"
         />
        <xs:minLength
            value="1"
         />
        <xs:pattern
            value="[0-9]([.][0-9]+)+"
         />
    </xs:restriction>
</xs:simpleType>
Patterns
The Version simple type is a xs:string that is restricted by the following pattern:
[0-9]([.][0-9]+)+Typically, version numbers are in the form major.minor (for example, 1.0). At a minimum, you must specify a major value; the major value can be only a single digit in the range from 0 through 9. The remainder of the version string can contain zero or more integer values delimited by a period (for example, 1.2.1234.1).
Remarks
The version string is limited to 256 characters.
Requirements
| Minimum supported client | 
Windows 7 [desktop apps only] | 
| Minimum supported server | 
Windows Server 2008 R2 [desktop apps only] |