XmlElementAttribute.ElementName 属性

定义

获取或设置生成的 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

属性值

String

生成的 XML 元素的名称。 默认值为成员标识符。

示例

以下示例将 ElementName 一个 XmlElementAttribute 属性设置为新值。

// This is the class that will be serialized.
public ref class XClass
{
public:
   /* The XML element name will be XName
   instead of the default ClassName. */
   [XmlElement(ElementName="XName")]
   String^ ClassName;
};
// This is the class that will be serialized.
public class XClass
{
   /* The XML element name will be XName
   instead of the default ClassName. */
   [XmlElement(ElementName = "XName")]
   public string ClassName;
}
' This is the class that will be serialized.
Public Class XClass
   ' The XML element name will be XName
   ' instead of the default ClassName.
   <XmlElement(ElementName := "XName")> Public ClassName() As String
End Class

注解

ElementName指定是否希望生成的 XML 元素的名称不同于成员的标识符。

如果生成的 XML 文档使用 XML 命名空间来区分相同命名的成员,则可以将相同的 ElementName 值设置为多个类成员。 有关如何在 XML 文档中使用命名空间和前缀名称的详细信息,请参阅 XmlSerializerNamespaces 类。

适用于

另请参阅