XmlReader.IsStartElement Method (String, String)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Calls MoveToContent and tests if the current content node is a start tag or empty element tag and if the LocalName and NamespaceURI properties of the element found match the given strings.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Syntax
'Declaration
Public Overridable Function IsStartElement ( _
localname As String, _
ns As String _
) As Boolean
public virtual bool IsStartElement(
string localname,
string ns
)
Parameters
- localname
Type: System.String
The string to match against the LocalName property of the element found.
- ns
Type: System.String
The string to match against the NamespaceURI property of the element found.
Return Value
Type: System.Boolean
true if the resulting node is an element. false if a node type other than XmlNodeType.Element was found or if the LocalName and NamespaceURI properties of the element do not match the specified strings.
Remarks
This method skips white space, comments, and processing instructions until the reader is positioned on a content node. The method then tests if the current node is an element.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also