XmlReader.Depth Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.