SecurityElement.Children 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 o imposta la matrice degli elementi figlio dell'elemento XML.
public:
property System::Collections::ArrayList ^ Children { System::Collections::ArrayList ^ get(); void set(System::Collections::ArrayList ^ value); };
public System.Collections.ArrayList? Children { get; set; }
public System.Collections.ArrayList Children { get; set; }
member this.Children : System.Collections.ArrayList with get, set
Public Property Children As ArrayList
Valore della proprietà
Elementi figlio ordinati dell'elemento XML come elementi di sicurezza.
Eccezioni
Un figlio del nodo XML padre è null
.
Esempio
Il codice seguente mostra l'uso della Children proprietà per ottenere la matrice di elementi figlio dell'elemento XML. Questo esempio di codice fa parte di un esempio più grande fornito per la SecurityElement classe.
String^ childrenCount = xmlElement->Children->Count.ToString();
string childrenCount = xmlElement.Children.Count.ToString();
Dim childrenCount As String = xmlElement.Children.Count.ToString()
Commenti
Se un SecurityElement oggetto contiene entrambi Text e Children, Text verrà visualizzato per primo.