Flowdock
method

decode_tag_end

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: SOAP::EncodingStyle::ASPDotNetHandler
decode_tag_end(ns, node) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/soap/encodingstyle/aspDotNetHandler.rb, line 122
  def decode_tag_end(ns, node)
    o = node.node
    if o.is_a?(SOAPUnknown)
      newnode = o.as_string
#       if /\A\s*\z/ =~ @textbuf
#         o.as_struct
#       else
#         o.as_string
#       end
      node.replace_node(newnode)
      o = node.node
    end

    decode_textbuf(o)
    @textbuf = ''
  end
Register or log in to add new notes.