CultureNeutral 简单类型

更新:2007 年 11 月

定义一些值,这些值用于使 .sdm 文件可以在它不包含特定于语言的二进制文件时将其区域性标识为非特定。CultureNeutral Simple Type是 Culture 简单类型与字符串“neutral”的联合。使用它可以指定任何特定区域性以及非特定区域性。

<xs:simpleType name="CultureNeutral">
    <xs:union
        memberValues="Culture"
    >
        <xs:simpleType>
            <xs:restriction
                base="string"
            >
                <xs:enumeration
                    value="neutral"
                 />
            </xs:restriction>
        </xs:simpleType>
    </xs:union>
</xs:simpleType>

枚举

下面的值由 CultureNeutral 简单类型定义:

说明

neutral

使您可以指定任何特定区域性以及非特定区域性。例如,neutral、en、en-US、zh-CHS。