System::Xml::XmlReader::IsStartElement विधि

XmlReader::IsStartElement() method

XmlReader::MoveToContent को कॉल करता है और जाँचता है कि वर्तमान कंटेंट नोड एक प्रारंभ टैग या खाली तत्व टैग है या नहीं।

virtual bool System::Xml::XmlReader::IsStartElement()

ReturnValue

true if XmlReader::MoveToContent finds a start tag or empty element tag; false if a node type other than XmlNodeType::Element was found.

संबंधित देखें

XmlReader::IsStartElement(String, String) method

XmlReader::MoveToContent को कॉल करता है और जाँचता है कि वर्तमान कंटेंट नोड एक प्रारंभ टैग या खाली तत्व टैग है और क्या पाए गए तत्व के XmlReader::get_LocalName और XmlReader::get_NamespaceURI मान दिए गए स्ट्रिंग्स से मेल खाते हैं।

virtual bool System::Xml::XmlReader::IsStartElement(String localname, String ns)
पैरामीटरप्रकारविवरण
स्थानीयनामStringपाए गए तत्व के LocalName मान के विरुद्ध मिलाने के लिए स्ट्रिंग।
nsStringपाए गए तत्व के NamespaceURI मान के विरुद्ध मिलाने के लिए स्ट्रिंग।

ReturnValue

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 values of the element do not match the specified strings.

संबंधित देखें

XmlReader::IsStartElement(String) method

XmlReader::MoveToContent को कॉल करता है और जाँचता है कि वर्तमान कंटेंट नोड एक प्रारंभ टैग या खाली तत्व टैग है और क्या पाए गए तत्व के XmlReader::get_Name मान दिए गए तर्क से मेल खाता है।

virtual bool System::Xml::XmlReader::IsStartElement(String name)
पैरामीटरप्रकारविवरण
नामStringपाए गए तत्व के Name मान के विरुद्ध मिलाने के लिए स्ट्रिंग।

ReturnValue

true if the resulting node is an element and the Name value matches the specified string. false if a node type other than XmlNodeType::Element was found or if the element Name value does not match the specified string.

संबंधित देखें