Object
# File lib/soap/netHttpClient.rb, line 230 def self.from_httpresponse(res) status = res.code.to_i reason = res.message contenttype = res['content-type'] content = res.body new(status, reason, contenttype, content) end
# File lib/soap/netHttpClient.rb, line 223 def initialize(status, reason, contenttype, content) @status = status @reason = reason @contenttype = contenttype @content = content end
[Validate]
Generated with the Darkfish Rdoc Generator 2.