public Method

Client.call(method, *args)

Call methods —————————————————————

Source Code

# File xmlrpc/client.rb, line 409
def call(method, *args)
  ok, param = call2(method, *args) 
  if ok
    param
  else
    raise param
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.