Method EndElement
EndElement(String, String, String)
Receive notification of the end of an element.
By default, do nothing. Application writers may override this method in a subclass to take specific actions at the end of each element (such as finalising a tree node or writing output to a file).
Declaration
public virtual void EndElement(string uri, string localName, string qName)
Parameters
Type | Name | Description |
---|---|---|
System.String | uri | The Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed. |
System.String | localName | The local name (without prefix), or the empty string if Namespace processing is not being performed. |
System.String | qName | The qualified name (with prefix), or the empty string if qualified names are not available. |
Implements
Exceptions
Type | Condition |
---|---|
SAXException | Any SAX exception, possibly wrapping another exception. |