XmlDictionaryReader.IsStartElement Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests whether the first tag is a start tag or empty element tag and if the local name and namespace URI match those of the current node.
public:
virtual bool IsStartElement(System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ namespaceUri);
public virtual bool IsStartElement (System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString namespaceUri);
override this.IsStartElement : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> bool
Public Overridable Function IsStartElement (localName As XmlDictionaryString, namespaceUri As XmlDictionaryString) As Boolean
Parameters
- localName
- XmlDictionaryString
An XmlDictionaryString that represents the local name of the attribute.
- namespaceUri
- XmlDictionaryString
An XmlDictionaryString that represents the namespace of the attribute.
Returns
true
if the first tag in the array is a start tag or empty element tag and matches localName
and namespaceUri
; otherwise false
.