XmlReader.Depth Property

Definition

When overridden in a derived class, gets the depth of the current node in the XML document.

public:
 abstract property int Depth { int get(); };
public abstract int Depth { get; }
member this.Depth : int
Public MustOverride ReadOnly Property Depth As Integer

Property Value

The depth of the current node in the XML document.

Exceptions

An XmlReader method was called before a previous asynchronous operation finished. In this case, InvalidOperationException is thrown with the message "An asynchronous operation is already in progress."

Examples

See Depth (in the XmlTextReader class) for an example using this property.

Applies to