| Visual Basic (Declaration) | |
|---|---|
Public Overloads Overrides NotOverridable Function IsStartElement( _ ByVal name As String _ ) As Boolean | |
| Visual Basic (Usage) | |
|---|---|
Dim instance As XmlFastInfosetReader Dim name As String Dim value As Boolean value = instance.IsStartElement(name) | |
Parameters
- name
- The string to match against the
Nameproperty of the element found.
Return Value
true if MoveToContent finds a start tag or empty element tag; false if a node type other than XmlNodeType.Element was found.
Calls MoveToContent and tests if the current content node is a start tag or empty element tag and if the local name and namespace of the element found matches the given arguments.