XamlReader.Skip Method
Skips the current node and advances the reader position to the next node.
Namespace: System.Xaml
Assembly: System.Xaml (in System.Xaml.dll)
Once skipped, Read is called by the default Skip implementation. You typically do not call Skip and Read in sequence.
In the default Skip implementation, different actions are taken depending on which NodeType the reader position is currently on. If the reader position is currently on a StartMember or StartObject, that member or object is skipped. For other NodeType values, no action is taken other than calling Read from the current position.
Subtree readers can call Skip, with behavior restrictions. For more information, see the "Subtree Readers" section in XamlReader, or see ReadSubtree.
The node tree behavior of XamlReader.Skip is based on the XML equivalent XmlReader.Skip. Based on the XmlReader.Skip behavior equivalence, XamlReader.Skip skips the node and its subtree, not just the single entry node.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.