XmlElementAttribute.ElementName Proprietà

Definizione

Ottiene o imposta il nome dell'elemento XML generato.

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

Valore della proprietà

String

Il nome dell'elemento XML generato. Il valore predefinito è l'identificatore del membro.

Esempio

Nell'esempio seguente la ElementName proprietà di un oggetto viene impostata XmlElementAttribute su un nuovo valore.

// 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

Commenti

Specificare un ElementName valore se si desidera che il nome dell'elemento XML generato sia diverso dall'identificatore del membro.

È possibile impostare lo stesso ElementName valore su più membri di classe se il documento XML generato utilizza spazi dei nomi XML per distinguere tra i membri denominati in modo identico. Per informazioni dettagliate su come usare spazi dei nomi e nomi con prefisso nel documento XML, vedere la XmlSerializerNamespaces classe .

Si applica a

Vedi anche