Flowdock
method

dump

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: WSDL::SOAP::DriverCreator
dump(porttype = nil) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/wsdl/soap/driverCreator.rb, line 29
  def dump(porttype = nil)
    if porttype.nil?
      result = ""
      @definitions.porttypes.each do |type|
        result << dump_porttype(type.name)
        result << "\n"
      end
    else
      result = dump_porttype(porttype)
    end
    result
  end
Register or log in to add new notes.