[Source]
# File lib/soap/netHttpClient.rb, line 180 180: def initialize(res) 181: @status = res.code.to_i 182: @reason = res.message 183: @contenttype = res['content-type'] 184: @content = res.body 185: end
[Validate]