Class: SOAP::StreamHandler::ConnectionData
- Defined in:
- lib/soap/streamHandler.rb
Instance Attribute Summary collapse
-
#is_fault ⇒ Object
Returns the value of attribute is_fault.
-
#receive_contenttype ⇒ Object
Returns the value of attribute receive_contenttype.
-
#receive_string ⇒ Object
Returns the value of attribute receive_string.
-
#send_contenttype ⇒ Object
Returns the value of attribute send_contenttype.
-
#send_string ⇒ Object
Returns the value of attribute send_string.
-
#soapaction ⇒ Object
Returns the value of attribute soapaction.
Instance Method Summary collapse
-
#initialize(send_string = nil) ⇒ ConnectionData
constructor
A new instance of ConnectionData.
Constructor Details
#initialize(send_string = nil) ⇒ ConnectionData
Returns a new instance of ConnectionData.
33 34 35 36 37 38 39 40 |
# File 'lib/soap/streamHandler.rb', line 33 def initialize(send_string = nil) @send_string = send_string @send_contenttype = nil @receive_string = nil @receive_contenttype = nil @is_fault = false @soapaction = nil end |
Instance Attribute Details
#is_fault ⇒ Object
Returns the value of attribute is_fault
30 31 32 |
# File 'lib/soap/streamHandler.rb', line 30 def is_fault @is_fault end |
#receive_contenttype ⇒ Object
Returns the value of attribute receive_contenttype
29 30 31 |
# File 'lib/soap/streamHandler.rb', line 29 def receive_contenttype @receive_contenttype end |
#receive_string ⇒ Object
Returns the value of attribute receive_string
28 29 30 |
# File 'lib/soap/streamHandler.rb', line 28 def receive_string @receive_string end |
#send_contenttype ⇒ Object
Returns the value of attribute send_contenttype
27 28 29 |
# File 'lib/soap/streamHandler.rb', line 27 def send_contenttype @send_contenttype end |
#send_string ⇒ Object
Returns the value of attribute send_string
26 27 28 |
# File 'lib/soap/streamHandler.rb', line 26 def send_string @send_string end |
#soapaction ⇒ Object
Returns the value of attribute soapaction
31 32 33 |
# File 'lib/soap/streamHandler.rb', line 31 def soapaction @soapaction end |