XmlElementAttribute.ElementName Propiedad
Definición
Obtiene o establece el nombre del elemento XML generado.Gets or sets the name of the generated XML element.
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
Valor de propiedad
Nombre del elemento XML generado.The name of the generated XML element. El valor predeterminado es el identificador de miembros.The default is the member identifier.
Ejemplos
En el ejemplo siguiente se establece la ElementName propiedad de un XmlElementAttribute en un nuevo valor.The following example sets the ElementName property of an XmlElementAttribute to a new value.
// 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
Comentarios
Especifique ElementName si desea que el nombre del elemento XML generado sea diferente del identificador del miembro.Specify an ElementName if you want the name of the generated XML element to differ from the member's identifier.
Puede establecer el mismo ElementName valor en más de un miembro de clase si el documento XML generado usa espacios de nombres XML para distinguir entre los miembros con el mismo nombre.You can set the same ElementName value to more than one class member if the generated XML document uses XML namespaces to distinguish between the identically named members. Para obtener más información sobre cómo usar los espacios de nombres y los nombres con prefijo en el documento XML, vea la XmlSerializerNamespaces clase.For details on how to use namespaces and prefixed names in the XML document, see the XmlSerializerNamespaces class.