XmlTypeAttribute クラス

定義

この属性が適用された対象が XmlSerializer によってシリアル化されるときに生成される XML スキーマを制御します。

public ref class XmlTypeAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct)]
public class XmlTypeAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Enum | System.AttributeTargets.Interface | System.AttributeTargets.Struct)>]
type XmlTypeAttribute = class
    inherit Attribute
Public Class XmlTypeAttribute
Inherits Attribute
継承
XmlTypeAttribute
属性

次の例は、適用されている 2 つのクラスを XmlTypeAttribute 示しています。


[XmlType(Namespace="http://www.cpandl.com",
TypeName="GroupMember")]
public ref class Person
{
public:
   String^ Name;
};


[XmlType(Namespace="http://www.cohowinery.com",
TypeName="GroupAddress")]
public ref class Address
{
public:
   String^ Line1;
   String^ Line2;
   String^ City;
   String^ State;
   String^ Zip;
};

public ref class Group
{
public:
   array<Person^>^Staff;
   Person^ Manager;
   Address^ Location;
};
[XmlType(Namespace = "http://www.cpandl.com",
TypeName = "GroupMember")]
public class Person
{
   public string Name;
}

[XmlType(Namespace = "http://www.cohowinery.com",
TypeName = "GroupAddress")]
public class Address
{
   public string Line1;
   public string Line2;
   public string City;
   public string State;
   public string Zip;
}

public class Group
{
   public Person[] Staff;
   public Person Manager;
   public Address Location;
}
<XmlType(Namespace := "http://www.cpandl.com", _
 TypeName := "GroupMember")> _
Public Class Person
    Public Name As String
End Class

<XmlType(Namespace := "http://www.cohowinery.com", _
 TypeName := "GroupAddress")> _ 
Public Class Address
    
    Public Line1 As String
    Public Line2 As String
    Public City As String
    Public State As String
    Public Zip As String
End Class

Public Class Group
    Public Staff() As Person
    Public Manager As Person
    Public Location As Address
End Class

注釈

オブジェクト XmlTypeAttribute をシリアル化または逆シリアル化する方法を XmlSerializer 制御する属性のファミリに属します。 類似する属性の完全な一覧については、「 XML シリアル化を制御する属性」を参照してください。

クラス、構造体、列挙型、またはインターフェイス宣言に適用 XmlTypeAttribute できます。

XmlTypeAttributeクラスに適用して、XML 型の名前空間、XML 型名、および XML スキーマ ドキュメントに型を含めるかどうかを指定します。 クラスのプロパティを設定した結果を XmlTypeAttribute 表示するには、実行可能ファイルまたは DLL としてアプリケーションをコンパイルし、結果のファイルを XML スキーマ定義ツール (Xsd.exe) に渡します。 このツールは、型定義を含むスキーマを書き込みます。

注意

プロパティをIncludeInSchemafalse設定すると、XML スキーマ定義ツール (Xsd.exe) にスキーマに型が含まれません。 既定では、各パブリック クラスに対して、XSD ツールはその型の要素と要素を生成 complexType します。

属性の使用の詳細については、「 属性」を参照してください。

注意

長いXmlTypeAttribute単語ではなく、コード内でこの単語XmlTypeを使用できます。

コンストラクター

XmlTypeAttribute()

XmlTypeAttribute クラスの新しいインスタンスを初期化します。

XmlTypeAttribute(String)

XmlTypeAttribute クラスの新しいインスタンスを初期化し、XML 型の名前を指定します。

プロパティ

AnonymousType

結果のスキーマ型が XSD 匿名型であるかどうかを判断する値を取得または設定します。

IncludeInSchema

XML スキーマ ドキュメントに型を含めるかどうかを示す値を取得または設定します。

Namespace

XML 型の名前空間を取得または設定します。

TypeId

派生クラスで実装されると、この Attribute の一意の識別子を取得します。

(継承元 Attribute)
TypeName

XML 型の名前を取得または設定します。

メソッド

Equals(Object)

このインスタンスが、指定されたオブジェクトと等価であるかどうかを示す値を返します。

(継承元 Attribute)
GetHashCode()

このインスタンスのハッシュ コードを返します。

(継承元 Attribute)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
IsDefaultAttribute()

派生クラスでオーバーライドされるとき、このインスタンスの値が派生クラスの既定値であるかどうかを示します。

(継承元 Attribute)
Match(Object)

派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。

(継承元 Attribute)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

明示的なインターフェイスの実装

_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

一連の名前を対応する一連のディスパッチ識別子に割り当てます。

(継承元 Attribute)
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)

オブジェクトの型情報を取得します。この情報はインターフェイスの型情報の取得に使用できます。

(継承元 Attribute)
_Attribute.GetTypeInfoCount(UInt32)

オブジェクトが提供する型情報インターフェイスの数 (0 または 1) を取得します。

(継承元 Attribute)
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

オブジェクトによって公開されたプロパティおよびメソッドへのアクセスを提供します。

(継承元 Attribute)

適用対象

こちらもご覧ください