Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Advances the XmlReader to the next sibling element with the specified qualified name.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Syntax
'Declaration
Public Overridable Function ReadToNextSibling ( _
name As String _
) As Boolean
public virtual bool ReadToNextSibling(
string name
)
public:
virtual bool ReadToNextSibling(
String^ name
)
abstract ReadToNextSibling :
name:string -> bool
override ReadToNextSibling :
name:string -> bool
public function ReadToNextSibling(
name : String
) : boolean
Parameters
- name
Type: System. . :: . .String
The qualified name of the sibling element you wish to move to.
Return Value
Type: System. . :: . .Boolean
true if a matching sibling element is found; otherwise false. If a matching sibling element is not found, the XmlReader is positioned on the end tag (NodeType is XmlNodeType.EndElement) of the parent element.
Remarks
Note
Do not call ReadToNextSibling when the XmlReader is an initial state (ReadState is Initial). You can call Read to advance the XmlReader and then call the ReadToNextSibling method.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.