Flowdock
method

decode_textbuf

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::EncodingStyle::ASPDotNetHandler
decode_textbuf(node) private

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 196
  def decode_textbuf(node)
    if node.is_a?(XSD::XSDString)
      if @charset
        node.set(XSD::Charset.encoding_from_xml(@textbuf, @charset))
      else
        node.set(@textbuf)
      end
    else
      # Nothing to do...
    end
  end
Register or log in to add new notes.