View source code Display the source code in std/xml.d from which this page was generated on github. Improve this page Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone. Page wiki View or edit the community-maintained wiki page associated with this page.

std.xml.element_parser.on_end_tag - multiple declarations

Variable ElementParser.onEndTag

Register a handler which will be called whenever an end tag is encountered which matches the specified name. You can also pass null as the name, in which case the handler will be called for any unmatched end tag.

Declaration

class ElementParser
{
	// ...
	void delegate(const(Element)) onEndTag;
	// ...
}

Examples

// Call this function whenever a  end tag is encountered
onEndTag["podcast"] = (in Element e)
{
    // Your code here
    //
    // This is a a closure, so code here may reference
    // variables which are outside of this scope
};

// call myEpisodeEndHandler (defined elsewhere) whenever an 
// end tag is encountered
onEndTag["episode"] = &myEpisodeEndHandler;

// call delegate dg for all other end tags
onEndTag[null] = dg;

Note that your function will be called for both start tags and empty tags. That is, we make no distinction between <br></br> and <br/>.

Variable ElementParser.onEndTag

Register a handler which will be called whenever an end tag is encountered which matches the specified name. You can also pass null as the name, in which case the handler will be called for any unmatched end tag.

Declaration

class ElementParser
{
	// ...
	void delegate(const(Element)) onEndTag;
	// ...
}

Examples

// Call this function whenever a  end tag is encountered
onEndTag["podcast"] = (in Element e)
{
    // Your code here
    //
    // This is a a closure, so code here may reference
    // variables which are outside of this scope
};

// call myEpisodeEndHandler (defined elsewhere) whenever an 
// end tag is encountered
onEndTag["episode"] = &myEpisodeEndHandler;

// call delegate dg for all other end tags
onEndTag[null] = dg;

Note that your function will be called for both start tags and empty tags. That is, we make no distinction between <br></br> and <br/>.

Authors

Janice Caron

License

Boost License 1.0.

Comments