XmlSchemaSequence クラス
アセンブリ: System.Xml (system.xml.dll 内)


XmlSchemaSequence クラスの例を次に示します。
Option Explicit On Option Strict On Imports System Imports System.Xml Imports System.Xml.Schema Class XMLSchemaExamples Public Shared Sub Main() Dim schema As New XmlSchema() ' <xs:element name="thing1" type="xs:string"/> Dim elementThing1 As New XmlSchemaElement() schema.Items.Add(elementThing1) elementThing1.Name = "thing1" elementThing1.SchemaTypeName = New XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema") ' <xs:element name="thing2" type="xs:string"/> Dim elementThing2 As New XmlSchemaElement() schema.Items.Add(elementThing2) elementThing2.Name = "thing2" elementThing2.SchemaTypeName = New XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema") ' <xs:element name="thing3" type="xs:string"/> Dim elementThing3 As New XmlSchemaElement() schema.Items.Add(elementThing3) elementThing3.Name = "thing3" elementThing3.SchemaTypeName = New XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema") ' <xs:attribute name="myAttribute" type="xs:decimal"/> Dim myAttribute As New XmlSchemaAttribute() schema.Items.Add(myAttribute) myAttribute.Name = "myAttribute" myAttribute.SchemaTypeName = New XmlQualifiedName("decimal", "http://www.w3.org/2001/XMLSchema") ' <xs:group name="myGroupOfThings"> Dim myGroupOfThings As New XmlSchemaGroup() schema.Items.Add(myGroupOfThings) myGroupOfThings.Name = "myGroupOfThings" ' <xs:sequence> Dim sequence As New XmlSchemaSequence() myGroupOfThings.Particle = sequence ' <xs:element ref="thing1"/> Dim elementThing1Ref As New XmlSchemaElement() sequence.Items.Add(elementThing1Ref) elementThing1Ref.RefName = New XmlQualifiedName("thing1") ' <xs:element ref="thing2"/> Dim elementThing2Ref As New XmlSchemaElement() sequence.Items.Add(elementThing2Ref) elementThing2Ref.RefName = New XmlQualifiedName("thing2") ' <xs:element ref="thing3"/> Dim elementThing3Ref As New XmlSchemaElement() sequence.Items.Add(elementThing3Ref) elementThing3Ref.RefName = New XmlQualifiedName("thing3") ' <xs:complexType name="myComplexType"> Dim myComplexType As New XmlSchemaComplexType() schema.Items.Add(myComplexType) myComplexType.Name = "myComplexType" ' <xs:group ref="myGroupOfThings"/> Dim myGroupOfThingsRef As New XmlSchemaGroupRef() myComplexType.Particle = myGroupOfThingsRef myGroupOfThingsRef.RefName = New XmlQualifiedName("myGroupOfThings") ' <xs:attribute ref="myAttribute"/> Dim myAttributeRef As New XmlSchemaAttribute() myComplexType.Attributes.Add(myAttributeRef) myAttributeRef.RefName = New XmlQualifiedName("myAttribute") Dim schemaSet As New XmlSchemaSet() AddHandler schemaSet.ValidationEventHandler, AddressOf ValidationCallbackOne schemaSet.Add(schema) schemaSet.Compile() Dim compiledSchema As XmlSchema = Nothing For Each schema1 As XmlSchema In schemaSet.Schemas() compiledSchema = schema1 Next Dim nsmgr As New XmlNamespaceManager(New NameTable()) nsmgr.AddNamespace("xs", "http://www.w3.org/2001/XMLSchema") compiledSchema.Write(Console.Out, nsmgr) End Sub 'Main Public Shared Sub ValidationCallbackOne(ByVal sender As Object, ByVal args As ValidationEventArgs) Console.WriteLine(args.Message) End Sub 'ValidationCallbackOne End Class 'XMLSchemaExamples
using System; using System.Xml; using System.Xml.Schema; class XMLSchemaExamples { public static void Main() { XmlSchema schema = new XmlSchema(); // <xs:element name="thing1" type="xs:string"/> XmlSchemaElement elementThing1 = new XmlSchemaElement(); schema.Items.Add(elementThing1); elementThing1.Name = "thing1"; elementThing1.SchemaTypeName = new XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema"); // <xs:element name="thing2" type="xs:string"/> XmlSchemaElement elementThing2 = new XmlSchemaElement(); schema.Items.Add(elementThing2); elementThing2.Name = "thing2"; elementThing2.SchemaTypeName = new XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema"); // <xs:element name="thing3" type="xs:string"/> XmlSchemaElement elementThing3 = new XmlSchemaElement(); schema.Items.Add(elementThing3); elementThing3.Name = "thing3"; elementThing3.SchemaTypeName = new XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema"); // <xs:attribute name="myAttribute" type="xs:decimal"/> XmlSchemaAttribute myAttribute = new XmlSchemaAttribute(); schema.Items.Add(myAttribute); myAttribute.Name = "myAttribute"; myAttribute.SchemaTypeName = new XmlQualifiedName("decimal", "http://www.w3.org/2001/XMLSchema"); // <xs:group name="myGroupOfThings"> XmlSchemaGroup myGroupOfThings = new XmlSchemaGroup(); schema.Items.Add(myGroupOfThings); myGroupOfThings.Name = "myGroupOfThings"; // <xs:sequence> XmlSchemaSequence sequence = new XmlSchemaSequence(); myGroupOfThings.Particle = sequence; // <xs:element ref="thing1"/> XmlSchemaElement elementThing1Ref = new XmlSchemaElement(); sequence.Items.Add(elementThing1Ref); elementThing1Ref.RefName = new XmlQualifiedName("thing1"); // <xs:element ref="thing2"/> XmlSchemaElement elementThing2Ref = new XmlSchemaElement(); sequence.Items.Add(elementThing2Ref); elementThing2Ref.RefName = new XmlQualifiedName("thing2"); // <xs:element ref="thing3"/> XmlSchemaElement elementThing3Ref = new XmlSchemaElement(); sequence.Items.Add(elementThing3Ref); elementThing3Ref.RefName = new XmlQualifiedName("thing3"); // <xs:complexType name="myComplexType"> XmlSchemaComplexType myComplexType = new XmlSchemaComplexType(); schema.Items.Add(myComplexType); myComplexType.Name = "myComplexType"; // <xs:group ref="myGroupOfThings"/> XmlSchemaGroupRef myGroupOfThingsRef = new XmlSchemaGroupRef(); myComplexType.Particle = myGroupOfThingsRef; myGroupOfThingsRef.RefName = new XmlQualifiedName("myGroupOfThings"); // <xs:attribute ref="myAttribute"/> XmlSchemaAttribute myAttributeRef = new XmlSchemaAttribute(); myComplexType.Attributes.Add(myAttributeRef); myAttributeRef.RefName = new XmlQualifiedName("myAttribute"); XmlSchemaSet schemaSet = new XmlSchemaSet(); schemaSet.ValidationEventHandler += new ValidationEventHandler(ValidationCallbackOne); schemaSet.Add(schema); schemaSet.Compile(); XmlSchema compiledSchema = null; foreach (XmlSchema schema1 in schemaSet.Schemas()) { compiledSchema = schema1; } XmlNamespaceManager nsmgr = new XmlNamespaceManager(new NameTable()); nsmgr.AddNamespace("xs", "http://www.w3.org/2001/XMLSchema"); compiledSchema.Write(Console.Out, nsmgr); } public static void ValidationCallbackOne(object sender, ValidationEventArgs args) { Console.WriteLine(args.Message); } }
前述のコード例に対して使用される XML ファイルを次に示します。
<?xml version="1.0" encoding="IBM437"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="thing1" type="xs:string"/> <xs:element name="thing2" type="xs:string"/> <xs:element name="thing3" type="xs:string"/> <xs:attribute name="myAttribute" type="xs:decimal"/> <xs:group name="myGroupOfThings"> <xs:sequence> <xs:element ref="thing1"/> <xs:element ref="thing2"/> <xs:element ref="thing3"/> </xs:sequence> </xs:group> <xs:complexType name="myComplexType"> <xs:group ref="myGroupOfThings"/> <xs:attribute ref="myAttribute"/> </xs:complexType> </xs:schema>

System.Xml.Schema.XmlSchemaObject
System.Xml.Schema.XmlSchemaAnnotated
System.Xml.Schema.XmlSchemaParticle
System.Xml.Schema.XmlSchemaGroupBase
System.Xml.Schema.XmlSchemaSequence


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


XmlSchemaSequence コンストラクタ
アセンブリ: System.Xml (system.xml.dll 内)


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


XmlSchemaSequence プロパティ

名前 | 説明 | |
---|---|---|
![]() | Annotation | Annotation プロパティを取得または設定します。 ( XmlSchemaAnnotated から継承されます。) |
![]() | Id | 文字列 ID を取得または設定します。 ( XmlSchemaAnnotated から継承されます。) |
![]() | Items | オーバーライドされます。 コンポジタ内に格納される要素。XmlSchemaElement、XmlSchemaGroupRef、XmlSchemaChoice、XmlSchemaSequence、または XmlSchemaAny のコレクション。 |
![]() | LineNumber | schema 要素が参照するファイルの行番号を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | LinePosition | schema 要素が参照するファイルの行番号を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | MaxOccurs | パーティクルが発生する最大回数を取得または設定します。 ( XmlSchemaParticle から継承されます。) |
![]() | MaxOccursString | 数字を文字列値として取得または設定します。パーティクルが発生する最大回数。 ( XmlSchemaParticle から継承されます。) |
![]() | MinOccurs | パーティクルが発生する最小回数を取得または設定します。 ( XmlSchemaParticle から継承されます。) |
![]() | MinOccursString | 数字を文字列値として取得または設定します。パーティクルが発生する最小回数。 ( XmlSchemaParticle から継承されます。) |
![]() | Namespaces | このスキーマ オブジェクトと一緒に使用する XmlSerializerNamespaces を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | Parent | この XmlSchemaObject の親を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | SourceUri | スキーマを読み込んだファイルのソース位置を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | UnhandledAttributes | 現在のスキーマのターゲット名前空間に属さない、修飾された属性を取得または設定します。 ( XmlSchemaAnnotated から継承されます。) |

XmlSchemaSequence メソッド

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

XmlSchemaSequence メンバ
W3C (World Wide Web Consortium) で指定された XML スキーマの sequence 要素 (コンポジタ) を表します。sequence では、グループ内の要素が、指定した順番で出現する必要があります。
XmlSchemaSequence データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | Annotation | Annotation プロパティを取得または設定します。(XmlSchemaAnnotated から継承されます。) |
![]() | Id | 文字列 ID を取得または設定します。(XmlSchemaAnnotated から継承されます。) |
![]() | Items | オーバーライドされます。 コンポジタ内に格納される要素。XmlSchemaElement、XmlSchemaGroupRef、XmlSchemaChoice、XmlSchemaSequence、または XmlSchemaAny のコレクション。 |
![]() | LineNumber | schema 要素が参照するファイルの行番号を取得または設定します。(XmlSchemaObject から継承されます。) |
![]() | LinePosition | schema 要素が参照するファイルの行番号を取得または設定します。(XmlSchemaObject から継承されます。) |
![]() | MaxOccurs | パーティクルが発生する最大回数を取得または設定します。(XmlSchemaParticle から継承されます。) |
![]() | MaxOccursString | 数字を文字列値として取得または設定します。パーティクルが発生する最大回数。(XmlSchemaParticle から継承されます。) |
![]() | MinOccurs | パーティクルが発生する最小回数を取得または設定します。(XmlSchemaParticle から継承されます。) |
![]() | MinOccursString | 数字を文字列値として取得または設定します。パーティクルが発生する最小回数。(XmlSchemaParticle から継承されます。) |
![]() | Namespaces | このスキーマ オブジェクトと一緒に使用する XmlSerializerNamespaces を取得または設定します。(XmlSchemaObject から継承されます。) |
![]() | Parent | この XmlSchemaObject の親を取得または設定します。(XmlSchemaObject から継承されます。) |
![]() | SourceUri | スキーマを読み込んだファイルのソース位置を取得または設定します。(XmlSchemaObject から継承されます。) |
![]() | UnhandledAttributes | 現在のスキーマのターゲット名前空間に属さない、修飾された属性を取得または設定します。(XmlSchemaAnnotated から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

Weblioに収録されているすべての辞書からXmlSchemaSequenceを検索する場合は、下記のリンクをクリックしてください。

- XmlSchemaSequenceのページへのリンク