XmlTypeAttribute 클래스
XmlSerializer가 특성 대상을 serialize할 때 생성되는 XML 스키마를 제어합니다.
네임스페이스: System.Xml.Serialization
어셈블리: System.Xml(system.xml.dll)
구문
‘선언
<AttributeUsageAttribute(AttributeTargets.Class Or AttributeTargets.Struct Or AttributeTargets.Enum Or AttributeTargets.Interface)> _
Public Class XmlTypeAttribute
Inherits Attribute
‘사용 방법
Dim instance As XmlTypeAttribute
[AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface)]
public class XmlTypeAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class|AttributeTargets::Struct|AttributeTargets::Enum|AttributeTargets::Interface)]
public ref class XmlTypeAttribute : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface) */
public class XmlTypeAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface)
public class XmlTypeAttribute extends Attribute
설명
XmlSerializer가 개체를 serialize 및 deserialize하는 방식을 제어하는 특성 패밀리에 속한 XmlTypeAttribute입니다. 유사한 특성에 대한 전체 목록은 XML Serialization을 제어하는 특성을 참조하십시오.
클래스, 구조체, 열거형 또는 인터페이스 선언에 XmlTypeAttribute를 적용할 수 있습니다.
XmlTypeAttribute를 클래스에 적용하여 XML 형식의 네임스페이스, XML 형식 이름 및 XML 스키마 문서에 해당 형식을 포함시킬 것인지 여부 등을 지정하십시오. XmlTypeAttribute 클래스의 속성을 설정한 결과를 확인하려면 응용 프로그램을 실행 파일이나 DLL로 컴파일한 다음 결과 파일을 XML 스키마 정의 도구(Xsd.exe)에 전달합니다. 도구는 형식 정의를 포함한 스키마를 씁니다.
참고
IncludeInSchema 속성을 false로 설정하면 XML 스키마 정의 도구(Xsd.exe)는 스키마에 형식을 포함하지 않습니다. 기본적으로 각 공용 클래스에 대해 XSD 도구는 complexType
과 해당 형식의 요소를 생성합니다.
특성 사용에 대한 자세한 내용은 특성을 사용하여 메타데이터 확장을 참조하십시오.
참고
긴 XmlTypeAttribute 대신 XmlType라는 단어를 코드에서 사용할 수 있습니다.
예제
다음 예제에서는 XmlTypeAttribute가 적용된 두 클래스를 보여 줍니다.
<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
[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 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;
};
/** @attribute XmlType(Namespace = "http://www.cpandl.com",
TypeName = "GroupMember")
*/
public class Person
{
public String name;
} //Person
/** @attribute 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;
} //Address
public class Group
{
public Person staff[];
public Person manager;
public Address location;
} //Group
상속 계층 구조
System.Object
System.Attribute
System.Xml.Serialization.XmlTypeAttribute
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
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에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0, 1.0에서 지원
참고 항목
참조
XmlTypeAttribute 멤버
System.Xml.Serialization 네임스페이스
XmlAttributeOverrides 클래스
XmlAttributes 클래스
XmlSerializer 클래스
XmlAttributes.XmlText 속성
XmlAttributes 클래스
기타 리소스
XML Serialization 소개
방법: XML 스트림의 대체 요소 이름 지정
특성을 사용하여 XML Serialization 제어
XML Serialization 예