class Nokogiri::XML::SAX::Document
def end_element_namespace(name, prefix = nil, uri = nil)
- +uri+ (String, nil) is the associated URI for the element's namespace
- +prefix+ (String, nil) is the namespace prefix for the element
- +name+ (String) is the name of the element
[Parameters]
Called at the end of an element.
##
def end_element_namespace(name, prefix = nil, uri = nil) # Deal with SAX v1 interface end_element([prefix, name].compact.join(":")) end