class SOAP::EncodingStyle::ASPDotNetHandler::SOAPUnknown

Public Class Methods

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

Public Instance Methods

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