method
new3
v1_9_3_125 -
Show latest stable
- Class:
XMLRPC::Client
new3(hash={})public
No documentation available.
# File lib/xmlrpc/client.rb, line 362
def new3(hash={})
# convert all keys into lowercase strings
h = {}
hash.each { |k,v| h[k.to_s.downcase] = v }
self.new(h['host'], h['path'], h['port'], h['proxy_host'], h['proxy_port'], h['user'], h['password'],
h['use_ssl'], h['timeout'])
end