XmlRootAttribute.ElementName 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XmlSerializer 클래스의 Serialize(TextWriter, Object) 및 Deserialize(Stream) 메서드에 의해 각각 생성되고 인식되는 XML 요소의 이름을 가져오거나 설정합니다.
public:
property System::String ^ ElementName { System::String ^ get(); void set(System::String ^ value); };
public string ElementName { get; set; }
member this.ElementName : string with get, set
Public Property ElementName As String
속성 값
XML 문서 인스턴스에서 생성되고 인식되는 XML 루트 요소의 이름입니다. 기본값은 serialize된 클래스의 이름입니다.
예제
다음 예제에서는 클래스의 인스턴스를 XmlRootAttribute 만들고 속성을 새 값으로 설정합니다 ElementName . 그런 다음 개체를 사용하여 개체의 serialization을 재정의하는 데 사용되는 개체를 만듭니 XmlAttributeOverrides 다.
public:
void SerializeOrder( String^ filename )
{
// Create an XmlSerializer instance using the method below.
XmlSerializer^ myXmlSerializer = CreateOverrider();
// Create the object, and set its Name property.
Student^ myStudent = gcnew Student;
myStudent->Name = "Student class1";
// Serialize the class, and close the TextWriter.
TextWriter^ writer = gcnew StreamWriter( filename );
myXmlSerializer->Serialize( writer, myStudent );
writer->Close();
}
// Return an XmlSerializer to the root serialization.
XmlSerializer^ CreateOverrider()
{
// Create an XmlAttributes to the default root element.
XmlAttributes^ myXmlAttributes = gcnew XmlAttributes;
// Create an XmlRootAttribute and set its element name and namespace.
XmlRootAttribute^ myXmlRootAttribute = gcnew XmlRootAttribute;
myXmlRootAttribute->ElementName = "OverriddenRootElementName";
myXmlRootAttribute->Namespace = "http://www.microsoft.com";
// Set the XmlRoot property to the XmlRoot object.
myXmlAttributes->XmlRoot = myXmlRootAttribute;
XmlAttributeOverrides^ myXmlAttributeOverrides =
gcnew XmlAttributeOverrides;
// Add the XmlAttributes object to the XmlAttributeOverrides object.
myXmlAttributeOverrides->Add( Student::typeid, myXmlAttributes );
// Create the Serializer, and return it.
XmlSerializer^ myXmlSerializer = gcnew XmlSerializer(
Student::typeid, myXmlAttributeOverrides );
return myXmlSerializer;
}
public void SerializeOrder(string filename)
{
// Create an XmlSerializer instance using the method below.
XmlSerializer myXmlSerializer = CreateOverrider();
// Create the object, and set its Name property.
Student myStudent = new Student();
myStudent.Name = "Student class1";
// Serialize the class, and close the TextWriter.
TextWriter writer = new StreamWriter(filename);
myXmlSerializer.Serialize(writer, myStudent);
writer.Close();
}
// Return an XmlSerializer to override the root serialization.
public XmlSerializer CreateOverrider()
{
// Create an XmlAttributes to override the default root element.
XmlAttributes myXmlAttributes = new XmlAttributes();
// Create an XmlRootAttribute and set its element name and namespace.
XmlRootAttribute myXmlRootAttribute = new XmlRootAttribute();
myXmlRootAttribute.ElementName = "OverriddenRootElementName";
myXmlRootAttribute.Namespace = "http://www.microsoft.com";
// Set the XmlRoot property to the XmlRoot object.
myXmlAttributes.XmlRoot = myXmlRootAttribute;
XmlAttributeOverrides myXmlAttributeOverrides =
new XmlAttributeOverrides();
/* Add the XmlAttributes object to the
XmlAttributeOverrides object. */
myXmlAttributeOverrides.Add(typeof(Student), myXmlAttributes);
// Create the Serializer, and return it.
XmlSerializer myXmlSerializer = new XmlSerializer
(typeof(Student), myXmlAttributeOverrides);
return myXmlSerializer;
}
Public Sub SerializeOrder(filename As String)
' Create an XmlSerializer instance using the method below.
Dim myXmlSerializer As XmlSerializer = CreateOverrider()
' Create the object, and set its Name property.
Dim myStudent As New Student()
myStudent.Name = "Student class1"
' Serialize the class, and close the TextWriter.
Dim writer = New StreamWriter(filename)
myXmlSerializer.Serialize(writer, myStudent)
writer.Close()
End Sub
' Return an XmlSerializer to override the root serialization.
Public Function CreateOverrider() As XmlSerializer
' Create an XmlAttributes to override the default root element.
Dim myXmlAttributes As New XmlAttributes()
' Create an XmlRootAttribute and set its element name and namespace.
Dim myXmlRootAttribute As New XmlRootAttribute()
myXmlRootAttribute.ElementName = "OverriddenRootElementName"
myXmlRootAttribute.Namespace = "http://www.microsoft.com"
' Set the XmlRoot property to the XmlRoot object.
myXmlAttributes.XmlRoot = myXmlRootAttribute
Dim myXmlAttributeOverrides As New XmlAttributeOverrides()
' Add the XmlAttributes object to the XmlAttributeOverrides object.
myXmlAttributeOverrides.Add(GetType(Student), myXmlAttributes)
' Create the Serializer, and return it.
Dim myXmlSerializer As New XmlSerializer(GetType(Student), myXmlAttributeOverrides)
Return myXmlSerializer
End Function
설명
ElementName 생성된 XML 요소의 이름을 클래스 이름과 다르게 하려면 지정합니다.