Flowdock
method

soapoperation_style

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: WSDL::OperationBinding
soapoperation_style() public

No documentation

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

Hide source
# File lib/wsdl/operationBinding.rb, line 51
  def soapoperation_style
    style = nil
    if @soapoperation
      style = @soapoperation.operation_style
    elsif parent.soapbinding
      style = parent.soapbinding.style
    else
      raise TypeError.new("operation style definition not found")
    end
    style || :document
  end
Register or log in to add new notes.