versionType Simple Type

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 double followed by one, two, or three doubles. For example, 1.2, or 1.2.3.

Requirements

Requirement Value
Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2008 [desktop apps only]