XmlDictionaryReader.IsStartElement Method (XmlDictionaryString, XmlDictionaryString)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Tests whether the first element is a start element or empty element and whether the local name and namespace URI match those of the current node.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
'Declaration Public Overridable Function IsStartElement ( _ localName As XmlDictionaryString, _ namespaceUri As XmlDictionaryString _ ) As Boolean
Parameters
- localName
- Type: System.Xml.XmlDictionaryString
An XmlDictionaryString that represents the local name of the attribute.
- namespaceUri
- Type: System.Xml.XmlDictionaryString
An XmlDictionaryString that represents the namespace of the attribute.
Return Value
Type: System.Booleantrue if the first element in the array is a start element or empty element and matches localName and namespaceUri; otherwise, false.
Show: