Click or drag to resize
XmlReader.ReadSubtree Method
Returns a new XmlReader instance that can be used to read the current node, and all its descendants.

Namespace: Crestron.SimplSharp.CrestronXml
Assembly: SimplSharpHelperInterface (in SimplSharpHelperInterface.dll)
Syntax
C#
public virtual XmlReader ReadSubtree()

Return Value

Type: XmlReader
A new XmlReader instance set to ReadState.Initial. A call to the Crestron.Xml.XmlReader.Read() method positions the new XmlReader on the node that was current before the call to ReadSubtree method.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe XmlReader is not positioned on an element when this method is called.
See Also