SecurityElement.Children 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 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
屬性值
XML 項目的已排序的子項目,做為安全項目。
例外狀況
XML 父節點的子系為 null
。
範例
下列程式代碼示範如何使用 Children 屬性來取得 XML 元素的子元素陣列。 此程式代碼範例是提供給 類別之較大範例的 SecurityElement 一部分。
String^ childrenCount = xmlElement->Children->Count.ToString();
string childrenCount = xmlElement.Children.Count.ToString();
Dim childrenCount As String = xmlElement.Children.Count.ToString()
備註
SecurityElement如果 同時Text包含和 Children,Text則會先出現 。