Method: Aws::Xml::Parser::OgaEngine#on_element
- Defined in:
- lib/aws-sdk-core/xml/parser/oga_engine.rb
#on_element(namespace, name, attrs = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
23 24 25 26 27 28 29 |
# File 'lib/aws-sdk-core/xml/parser/oga_engine.rb', line 23 def on_element(namespace, name, attrs = {}) @depth += 1 @stack.start_element(name) attrs.each do |attr| @stack.attr(*attr) end end |