Parent

Files

Class/Module Index [+]

Quicksearch

SOAP::NetHttpClient::Response

Attributes

content[R]
contenttype[R]
reason[R]
status[R]

Public Class Methods

from_httpresponse(res) click to toggle source
# 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
new(status, reason, contenttype, content) click to toggle source
# 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.