class SOAP::StreamHandler::ConnectionData

Attributes

is_fault[RW]
is_nocontent[RW]
receive_contenttype[RW]
receive_string[RW]
send_contenttype[RW]
send_string[RW]
soapaction[RW]

Public Class Methods

new(send_string = nil) click to toggle source
# File lib/soap/streamHandler.rb, line 37
def initialize(send_string = nil)
  @send_string = send_string
  @send_contenttype = nil
  @receive_string = nil
  @receive_contenttype = nil
  @is_fault = false
  @is_nocontent = false
  @soapaction = nil
end