| Class | SOAP::RPC::SOAPMethodResponse |
| In: |
soap/rpc/element.rb
|
| Parent: | SOAPMethod |
# File soap/rpc/element.rb, line 277 def initialize(qname, param_def = nil) super(qname, param_def) @retval = nil end
# File soap/rpc/element.rb, line 289 def each if @retval_name and !@retval.is_a?(SOAPVoid) yield(@retval_name, @retval) end output_params.each do |name| unless @outparam[name] raise ParameterError.new("parameter: #{name} was not given") end yield(name, @outparam[name]) end end
ruby-doc.org is a community service provided by James Britt and Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.