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


属性グループは、schema 要素の子としてだけ定義できます。この場合は、name 属性が存在し、属性グループを構成する attribute、attributeGroup、または anyAttribute の各要素を格納している必要があります。complexType 要素または attributeGroup 要素に属性グループが含まれている場合は、ref 属性が存在している必要があり、name 属性は許可されません。

attributeGroup 要素を作成する例を次に示します。
Option Strict On Option Explicit On Imports System Imports System.Xml Imports System.Xml.Schema Class XMLSchemaExamples Public Shared Sub Main() Dim schema As New XmlSchema() ' <xs:attributeGroup name="myAttributeGroup"> Dim myAttributeGroup As New XmlSchemaAttributeGroup() schema.Items.Add(myAttributeGroup) myAttributeGroup.Name = "myAttributeGroup" ' <xs:attribute name="someattribute1" type="xs:integer"/> Dim someattribute1 As New XmlSchemaAttribute() myAttributeGroup.Attributes.Add(someattribute1) someattribute1.Name = "someattribute1" someattribute1.SchemaTypeName = New XmlQualifiedName("integer", "http://www.w3.org/2001/XMLSchema") ' <xs:attribute name="someattribute2" type="xs:string"/> Dim someattribute2 As New XmlSchemaAttribute() myAttributeGroup.Attributes.Add(someattribute2) someattribute2.Name = "someattribute2" someattribute2.SchemaTypeName = New XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema") ' <xs:complexType name="myElementType"> Dim myElementType As New XmlSchemaComplexType() schema.Items.Add(myElementType) myElementType.Name = "myElementType" ' <xs:attributeGroup ref="myAttributeGroup"/> Dim myAttributeGroupRef As New XmlSchemaAttributeGroupRef() myElementType.Attributes.Add(myAttributeGroupRef) myAttributeGroupRef.RefName = New XmlQualifiedName("myAttributeGroup") ' <xs:attributeGroup name="myAttributeGroupA"> Dim myAttributeGroupA As New XmlSchemaAttributeGroup() schema.Items.Add(myAttributeGroupA) myAttributeGroupA.Name = "myAttributeGroupA" ' <xs:attribute name="someattribute10" type="xs:integer"/> Dim someattribute10 As New XmlSchemaAttribute() myAttributeGroupA.Attributes.Add(someattribute10) someattribute10.Name = "someattribute10" someattribute10.SchemaTypeName = New XmlQualifiedName("integer", "http://www.w3.org/2001/XMLSchema") ' <xs:attribute name="someattribute11" type="xs:string"/> Dim someattribute11 As New XmlSchemaAttribute() myAttributeGroupA.Attributes.Add(someattribute11) someattribute11.Name = "someattribute11" someattribute11.SchemaTypeName = New XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema") ' <xs:attributeGroup name="myAttributeGroupB"> Dim myAttributeGroupB As New XmlSchemaAttributeGroup() schema.Items.Add(myAttributeGroupB) myAttributeGroupB.Name = "myAttributeGroupB" ' <xs:attribute name="someattribute20" type="xs:date"/> Dim someattribute20 As New XmlSchemaAttribute() myAttributeGroupB.Attributes.Add(someattribute20) someattribute20.Name = "someattribute20" someattribute20.SchemaTypeName = New XmlQualifiedName("date", "http://www.w3.org/2001/XMLSchema") ' <xs:attributeGroup ref="myAttributeGroupA"/> Dim myAttributeGroupRefA As New XmlSchemaAttributeGroupRef() myAttributeGroupB.Attributes.Add(myAttributeGroupRefA) myAttributeGroupRefA.RefName = New XmlQualifiedName("myAttributeGroupA") 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:attributeGroup name="myAttributeGroup"> XmlSchemaAttributeGroup myAttributeGroup = new XmlSchemaAttributeGroup(); schema.Items.Add(myAttributeGroup); myAttributeGroup.Name = "myAttributeGroup"; // <xs:attribute name="someattribute1" type="xs:integer"/> XmlSchemaAttribute someattribute1 = new XmlSchemaAttribute(); myAttributeGroup.Attributes.Add(someattribute1); someattribute1.Name = "someattribute1"; someattribute1.SchemaTypeName = new XmlQualifiedName("integer", "http://www.w3.org/2001/XMLSchema"); // <xs:attribute name="someattribute2" type="xs:string"/> XmlSchemaAttribute someattribute2 = new XmlSchemaAttribute(); myAttributeGroup.Attributes.Add(someattribute2); someattribute2.Name = "someattribute2"; someattribute2.SchemaTypeName = new XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema"); // <xs:complexType name="myElementType"> XmlSchemaComplexType myElementType = new XmlSchemaComplexType(); schema.Items.Add(myElementType); myElementType.Name = "myElementType"; // <xs:attributeGroup ref="myAttributeGroup"/> XmlSchemaAttributeGroupRef myAttributeGroupRef = new XmlSchemaAttributeGroupRef(); myElementType.Attributes.Add(myAttributeGroupRef); myAttributeGroupRef.RefName = new XmlQualifiedName("myAttributeGroup"); // <xs:attributeGroup name="myAttributeGroupA"> XmlSchemaAttributeGroup myAttributeGroupA = new XmlSchemaAttributeGroup(); schema.Items.Add(myAttributeGroupA); myAttributeGroupA.Name = "myAttributeGroupA"; // <xs:attribute name="someattribute10" type="xs:integer"/> XmlSchemaAttribute someattribute10 = new XmlSchemaAttribute(); myAttributeGroupA.Attributes.Add(someattribute10); someattribute10.Name = "someattribute10"; someattribute10.SchemaTypeName = new XmlQualifiedName("integer", "http://www.w3.org/2001/XMLSchema"); // <xs:attribute name="someattribute11" type="xs:string"/> XmlSchemaAttribute someattribute11 = new XmlSchemaAttribute(); myAttributeGroupA.Attributes.Add(someattribute11); someattribute11.Name = "someattribute11"; someattribute11.SchemaTypeName = new XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema"); // <xs:attributeGroup name="myAttributeGroupB"> XmlSchemaAttributeGroup myAttributeGroupB = new XmlSchemaAttributeGroup(); schema.Items.Add(myAttributeGroupB); myAttributeGroupB.Name = "myAttributeGroupB"; // <xs:attribute name="someattribute20" type="xs:date"/> XmlSchemaAttribute someattribute20 = new XmlSchemaAttribute(); myAttributeGroupB.Attributes.Add(someattribute20); someattribute20.Name = "someattribute20"; someattribute20.SchemaTypeName = new XmlQualifiedName("date", "http://www.w3.org/2001/XMLSchema"); // <xs:attributeGroup ref="myAttributeGroupA"/> XmlSchemaAttributeGroupRef myAttributeGroupRefA = new XmlSchemaAttributeGroupRef(); myAttributeGroupB.Attributes.Add(myAttributeGroupRefA); myAttributeGroupRefA.RefName = new XmlQualifiedName("myAttributeGroupA"); 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:attributeGroup name="myAttributeGroup"> <xs:attribute name="someattribute1" type="xs:integer"/> <xs:attribute name="someattribute2" type="xs:string"/> </xs:attributeGroup> <xs:complexType name="myElementType"> <xs:attributeGroup ref="myAttributeGroup"/> </xs:complexType> <xs:attributeGroup name="myAttributeGroupA"> <xs:attribute name="someattribute10" type="xs:integer"/> <xs:attribute name="someattribute11" type="xs:string"/> </xs:attributeGroup> <xs:attributeGroup name="myAttributeGroupB"> <xs:attribute name="someattribute20" type="xs:date"/> <xs:attributeGroup ref="myAttributeGroupA"/> </xs:attributeGroup> </xs:schema>

System.Xml.Schema.XmlSchemaObject
System.Xml.Schema.XmlSchemaAnnotated
System.Xml.Schema.XmlSchemaAttributeGroup


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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


XmlSchemaAttributeGroup コンストラクタ
アセンブリ: 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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


XmlSchemaAttributeGroup プロパティ

名前 | 説明 | |
---|---|---|
![]() | Annotation | Annotation プロパティを取得または設定します。 ( XmlSchemaAnnotated から継承されます。) |
![]() | Id | 文字列 ID を取得または設定します。 ( XmlSchemaAnnotated から継承されます。) |
![]() | LineNumber | schema 要素が参照するファイルの行番号を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | LinePosition | schema 要素が参照するファイルの行番号を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | Namespaces | このスキーマ オブジェクトと一緒に使用する XmlSerializerNamespaces を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | Parent | この XmlSchemaObject の親を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | SourceUri | スキーマを読み込んだファイルのソース位置を取得または設定します。 ( XmlSchemaObject から継承されます。) |
![]() | UnhandledAttributes | 現在のスキーマのターゲット名前空間に属さない、修飾された属性を取得または設定します。 ( XmlSchemaAnnotated から継承されます。) |

XmlSchemaAttributeGroup メソッド

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

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

XmlSchemaAttributeGroup メンバ
W3C (World Wide Web Consortium) で指定された XML スキーマの attributeGroup 要素を表します。AttributesGroups は、属性宣言のセットをグループ化し、グループとして複合型定義に組み込むことができるようにします。
XmlSchemaAttributeGroup データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | Annotation | Annotation プロパティを取得または設定します。(XmlSchemaAnnotated から継承されます。) |
![]() | Id | 文字列 ID を取得または設定します。(XmlSchemaAnnotated から継承されます。) |
![]() | LineNumber | schema 要素が参照するファイルの行番号を取得または設定します。(XmlSchemaObject から継承されます。) |
![]() | LinePosition | schema 要素が参照するファイルの行番号を取得または設定します。(XmlSchemaObject から継承されます。) |
![]() | 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に収録されているすべての辞書からXmlSchemaAttributeGroupを検索する場合は、下記のリンクをクリックしてください。

- XmlSchemaAttributeGroupのページへのリンク