定義指定工作版本的模式。
<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}後面接著一、二或三個數字的數位;數位會以點分隔。 例如,1.2、1.2.3 或 9.87.65.432。
Requirements
| Requirement | Value |
|---|---|
| 最低支援的用戶端 |
Windows Vista [僅限傳統型應用程式] |
| 最低支援的伺服器 |
Windows Server 2008 [僅限傳統型應用程式] |