Partilhar via


XPathNavigator.HasChildren Propriedade

Definição

Obtém um valor que indica se o nó atual tem nós filho.

public:
 virtual property bool HasChildren { bool get(); };
public:
 abstract property bool HasChildren { bool get(); };
public virtual bool HasChildren { get; }
public abstract bool HasChildren { get; }
member this.HasChildren : bool
Public Overridable ReadOnly Property HasChildren As Boolean
Public MustOverride ReadOnly Property HasChildren As Boolean

Valor da propriedade

true se o nó atual tiver nós filho; caso contrário, false.

Comentários

Se o XPathNavigator estiver posicionado em um nó que não pode ter nós filho, a propriedade HasChildren sempre retornará false.

A tabela a seguir lista o nó filho XPathNodeType nós permitidos para cada nó XPathNodeType.

Nó XPathNodeType Nós de XPathNodeType filho
Root Element, Commentou nós ProcessingInstruction. Observação:DocumentFragment é equivalente a Root ao usar a classe XmlDocument e pode ter os mesmos filhos que um elemento.
Element Element, Text, Comment, ProcessingInstruction, Whitespace ou nós SignificantWhitespace.
Todos os outros nós XPathNodeType Não é possível ter nós filho.

Aplica-se a

Confira também