| Visual Basic (Declaration) | |
|---|---|
Public Overloads Overrides NotOverridable Function IsStartElement( _ ByVal localname As String, _ ByVal ns As String _ ) As Boolean | |
| Visual Basic (Usage) | |
|---|---|
Dim instance As XmlFastInfosetReader Dim localname As String Dim ns As String Dim value As Boolean value = instance.IsStartElement(localname, ns) | |
Parameters
- localname
- The string to match against the
LocalNameproperty of the element found. - ns
- The string to match against the
NamespaceURIproperty 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.