XElement.LastAttribute Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene l'ultimo attributo di questo elemento.
public:
property System::Xml::Linq::XAttribute ^ LastAttribute { System::Xml::Linq::XAttribute ^ get(); };
public System.Xml.Linq.XAttribute LastAttribute { get; }
public System.Xml.Linq.XAttribute? LastAttribute { get; }
member this.LastAttribute : System.Xml.Linq.XAttribute
Public ReadOnly Property LastAttribute As XAttribute
Valore della proprietà
Oggetto XAttribute che contiene l'ultimo attributo dell'elemento.
Esempio
Nell'esempio seguente viene creato un albero XML con tre attributi. Scrive quindi l'ultimo attributo come output.
XElement xmlTree = new XElement("Root",
new XAttribute("Att1", 1),
new XAttribute("Att2", 2),
new XAttribute("Att3", 3)
);
Console.WriteLine(xmlTree.LastAttribute);
Dim xmlTree As XElement = <Root Att1="1" Att2="2" Att3="3"/>
Console.WriteLine(xmlTree.LastAttribute)
Nell'esempio viene prodotto l'output seguente:
Att3="3"
Commenti
Gli attributi vengono archiviati nell'elemento nell'ordine in cui sono stati aggiunti all'elemento .