XmlArrayAttribute.ElementName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置提供给序列化数组的 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 元素名称。 默认值为向其分配 XmlArrayAttribute 的成员的名称。
示例
以下示例序列化类的 Library
实例,该实例包含一个名为 Books
返回项数组 Book
的属性。 该示例使用 ElementName 属性指定 XML 元素的数组应命名 My_Books
而不是 Books
命名。
#using <System.Xml.dll>
#using <System.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
using namespace System::Xml::Serialization;
public ref class Book
{
public:
String^ Title;
String^ Author;
String^ ISBN;
};
public ref class Library
{
private:
array<Book^>^books;
public:
[XmlArray(ElementName="My_Books")]
property array<Book^>^ Books
{
array<Book^>^ get()
{
return books;
}
void set( array<Book^>^value )
{
books = value;
}
}
};
int main()
{
String^ filename = "ArrayExample.xml";
XmlSerializer^ mySerializer = gcnew XmlSerializer( Library::typeid );
TextWriter^ t = gcnew StreamWriter( filename );
XmlSerializerNamespaces^ ns = gcnew XmlSerializerNamespaces;
ns->Add( "bk", "http://wwww.contoso.com" );
Book^ b1 = gcnew Book;
b1->Title = "MyBook Title";
b1->Author = "An Author";
b1->ISBN = "00000000";
Book^ b2 = gcnew Book;
b2->Title = "Another Title";
b2->Author = "Another Author";
b2->ISBN = "0000000";
Library^ myLibrary = gcnew Library;
array<Book^>^myBooks = {b1,b2};
myLibrary->Books = myBooks;
mySerializer->Serialize( t, myLibrary, ns );
t->Close();
}
using System;
using System.IO;
using System.Xml;
using System.Xml.Serialization;
public class Library
{
private Book[] books;
[XmlArray(ElementName="My_Books")]
public Book[] Books
{
get{return books;}
set{books = value;}
}
}
public class Book
{
public string Title;
public string Author;
public string ISBN;
}
public class Run
{
public static void Main()
{
Run test = new Run();
test.WriteBook("ArrayExample.xml");
}
public void WriteBook(string filename)
{
XmlSerializer mySerializer = new XmlSerializer(typeof(Library));
TextWriter t = new StreamWriter(filename);
XmlSerializerNamespaces ns = new XmlSerializerNamespaces();
ns.Add("bk", "http://wwww.contoso.com");
Book b1 = new Book();
b1.Title = "MyBook Title";
b1.Author = "An Author";
b1.ISBN = "00000000";
Book b2 = new Book();
b2.Title = "Another Title";
b2.Author = "Another Author";
b2.ISBN = "0000000";
Library myLibrary = new Library();
Book[] myBooks = {b1,b2};
myLibrary.Books = myBooks;
mySerializer.Serialize(t,myLibrary,ns);
t.Close();
}
}
Option Explicit
Option Strict
Imports System.IO
Imports System.Xml
Imports System.Xml.Serialization
Public Class Library
Private myBooks() As Book
<XmlArray(ElementName := "My_Books")> _
Public Property Books() As Book()
Get
Return myBooks
End Get
Set
myBooks = value
End Set
End Property
End Class
Public Class Book
Public Title As String
Public Author As String
Public ISBN As String
End Class
Public Class Run
Public Shared Sub Main()
Dim test As New Run()
test.WriteBook("ArrayExample.xml")
End Sub
Public Sub WriteBook(ByVal filename As String)
Dim mySerializer As New XmlSerializer(GetType(Library))
Dim t As New StreamWriter(filename)
Dim ns As New XmlSerializerNamespaces()
ns.Add("bk", "http://wwww.contoso.com")
Dim b1 As New Book()
b1.Title = "MyBook Title"
b1.Author = "An Author"
b1.ISBN = "00000000"
Dim b2 As New Book()
b2.Title = "Another Title"
b2.Author = "Another Author"
b2.ISBN = "0000000"
Dim myLibrary As New Library()
Dim myBooks() As Book = {b1, b2}
myLibrary.Books = myBooks
mySerializer.Serialize(t, myLibrary, ns)
t.Close()
End Sub
End Class
注解
指定 ElementName 何时希望生成的 XML 元素名称不同于成员的标识符。
只要生成的 XML 文档使用 XML 命名空间来区分相同命名的成员,就可以将相同的 ElementName 值设置为多个成员。 有关在 XML 文档中使用命名空间和创建前缀名称的更多详细信息,请参阅 XmlSerializerNamespaces。