XmlSchemaCompilationSettings.EnableUpaCheck プロパティ

定義

XmlSchemaSet で UPA 違反をチェックする必要があるかどうかを示す値を取得または設定します。

public:
 property bool EnableUpaCheck { bool get(); void set(bool value); };
public bool EnableUpaCheck { get; set; }
member this.EnableUpaCheck : bool with get, set
Public Property EnableUpaCheck As Boolean

プロパティ値

Boolean

XmlSchemaSet で UPA 違反をチェックする必要がある場合は true。それ以外の場合は false。 既定値は、true です。

注釈

プロパティを EnableUpaCheck 設定 falseすると、次の規則に基づいて検証が実行されます。

  1. 厳密な型とワイルドカードのどちらかの選択肢がある場合、 XmlSchemaSet 次のスキーマと Xml の例に示すように、厳密に型指定されたパーティクルが選択されます。

<xs:sequence>

<xs:any namespace="##any"/>

<xs:element name="A" type="xs:string" minOccurs="0"/>

</xs:sequence>

次の Xml では、スキーマ内で A 要素が関連付 <xs:element name="A" type="xs:string" minOccurs="0"/> けられます。

<A>some text</A>

  1. 2 つの厳密に型指定された要素の間に選択肢がある場合は、最初の XmlSchemaSet 要素を選択します。

<xs:sequence>

<xs:element name="A" type="xs:string"/>

<xs:element name="B" type="xs:string" minOccurs="0"/>

<xs:element name="B" type="xs:string"/>

</xs:sequence>

次の Xml では、スキーマ内で B 要素が関連付 <xs:element name="B" type="xs:string" minOccurs="0"/> けられます。

<A/>

<B/>

適用対象