class SOAP::EncodingStyle::ASPDotNetHandler::SOAPUnknown
Public Class Methods
new(handler, elename)
click to toggle source
Calls superclass method
SOAP::EncodingStyle::ASPDotNetHandler::SOAPTemporalObject::new
# File lib/soap/encodingstyle/aspDotNetHandler.rb, line 87 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 101 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 93 def as_struct o = SOAPStruct.decode(@elename, XSD::AnyTypeName) o.parent = @parent o.type.name = @name @handler.decode_parent(@parent, o) o end