SOAP::ConnectionData (Class)

In: soap/streamHandler.rb
Parent: Object

Methods

[]   []=   new  

Attributes

receive_contenttype  [RW] 
receive_string  [RW] 
send_contenttype  [RW] 
send_string  [RW] 

Public Class methods

[Source]

# File soap/streamHandler.rb, line 37
    def initialize
      @send_string = nil
      @send_contenttype = nil
      @receive_string = nil
      @receive_contenttype = nil
      @bag = {}
    end

Public Instance methods

[Source]

# File soap/streamHandler.rb, line 45
    def [](idx)
      @bag[idx]
    end

[Source]

# File soap/streamHandler.rb, line 49
    def []=(idx, value)
      @bag[idx] = value
    end

[Validate]