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 pattern that specifies a version of a task.
<xs:simpleType name="versionType">
    <xs:restriction
        base="string"
    >
        <xs:pattern
            value="\d+(\.\d+){1,3}"
         />
    </xs:restriction>
</xs:simpleType>
Patterns
The versionType simple type is a string that is restricted by the following pattern:
- \d+(\.\d+){1,3}- A number followed by one, two, or three numbers; the numbers are separated by dots. For example, 1.2, 1.2.3, or 9.87.65.432. 
Requirements
| Requirement | Value | 
|---|---|
| Minimum supported client | Windows Vista [desktop apps only] | 
| Minimum supported server | Windows Server 2008 [desktop apps only] |