Class: SOAP::StreamHandler::ConnectionData
- Defined in:
- lib/soap/streamHandler.rb
Instance Attribute Summary collapse
-
#is_fault ⇒ Object
Returns the value of attribute is_fault.
-
#is_nocontent ⇒ Object
Returns the value of attribute is_nocontent.
-
#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.
37 38 39 40 41 42 43 44 45 |
# 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 |
Instance Attribute Details
#is_fault ⇒ Object
Returns the value of attribute is_fault.
33 34 35 |
# File 'lib/soap/streamHandler.rb', line 33 def is_fault @is_fault end |
#is_nocontent ⇒ Object
Returns the value of attribute is_nocontent.
34 35 36 |
# File 'lib/soap/streamHandler.rb', line 34 def is_nocontent @is_nocontent end |
#receive_contenttype ⇒ Object
Returns the value of attribute receive_contenttype.
32 33 34 |
# File 'lib/soap/streamHandler.rb', line 32 def receive_contenttype @receive_contenttype end |
#receive_string ⇒ Object
Returns the value of attribute receive_string.
31 32 33 |
# File 'lib/soap/streamHandler.rb', line 31 def receive_string @receive_string end |
#send_contenttype ⇒ Object
Returns the value of attribute send_contenttype.
30 31 32 |
# File 'lib/soap/streamHandler.rb', line 30 def send_contenttype @send_contenttype end |
#send_string ⇒ Object
Returns the value of attribute send_string.
29 30 31 |
# File 'lib/soap/streamHandler.rb', line 29 def send_string @send_string end |
#soapaction ⇒ Object
Returns the value of attribute soapaction.
35 36 37 |
# File 'lib/soap/streamHandler.rb', line 35 def soapaction @soapaction end |