In Files

  • soap/encodingstyle/aspDotNetHandler.rb

Class/Module Index [+]

Quicksearch

SOAP::EncodingStyle::ASPDotNetHandler::SOAPUnknown

Public Class Methods

new(handler, elename) click to toggle source
 
               # File soap/encodingstyle/aspDotNetHandler.rb, line 86
def initialize(handler, elename)
  super()
  @handler = handler
  @elename = elename
end
            

Public Instance Methods

as_nil() click to toggle source
 
               # File soap/encodingstyle/aspDotNetHandler.rb, line 107
def as_nil
  o = SOAPNil.decode(@elename)
  o.parent = @parent
  @handler.decode_parent(@parent, o)
  o
end
            
as_string() click to toggle source
 
               # File soap/encodingstyle/aspDotNetHandler.rb, line 100
def as_string
  o = SOAPString.decode(@elename)
  o.parent = @parent
  @handler.decode_parent(@parent, o)
  o
end
            
as_struct() click to toggle source
 
               # File soap/encodingstyle/aspDotNetHandler.rb, line 92
def as_struct
  o = SOAPStruct.decode(@elename, XSD::AnyTypeName)
  o.parent = @parent
  o.type.name = @name
  @handler.decode_parent(@parent, o)
  o
end