XElement.HasElements Propiedad

Definición

Obtiene un valor que indica si este elemento tiene al menos un elemento secundario.

public:
 property bool HasElements { bool get(); };
public bool HasElements { get; }
member this.HasElements : bool
Public ReadOnly Property HasElements As Boolean

Valor de propiedad

true si este elemento tiene al menos un elemento secundario; de lo contrario, false.

Ejemplos

En el ejemplo siguiente se usa esta propiedad .

XElement xmlTree1 = new XElement("Root",
    new XElement("Child", 1)
);
Console.WriteLine(xmlTree1.HasElements);
XElement xmlTree2 = new XElement("Root", "contents");
Console.WriteLine(xmlTree2.HasElements);
Dim xmlTree1 As XElement = _
        <Root>
            <Child>1</Child>
        </Root>
Console.WriteLine(xmlTree1.HasElements)

Dim xmlTree2 As XElement = <Root>contents</Root>
Console.WriteLine(xmlTree2.HasElements)

Este ejemplo produce el siguiente resultado:

True
False

Se aplica a

Consulte también