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 local name and namespace URI.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Syntax
'Declaration
Public Overridable Function ReadToNextSibling ( _
localName As String, _
namespaceURI As String _
) As Boolean
public virtual bool ReadToNextSibling(
string localName,
string namespaceURI
)
public:
virtual bool ReadToNextSibling(
String^ localName,
String^ namespaceURI
)
abstract ReadToNextSibling :
localName:string *
namespaceURI:string -> bool
override ReadToNextSibling :
localName:string *
namespaceURI:string -> bool
public function ReadToNextSibling(
localName : String,
namespaceURI : String
) : boolean
Parameters
- localName
Type: System. . :: . .String
The local name of the sibling element you wish to move to.
- namespaceURI
Type: System. . :: . .String
The namespace URI 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.