method
decode_textbuf
v1_8_6_287 -
Show latest stable
- Class:
SOAP::EncodingStyle::LiteralHandler
decode_textbuf(node)private
No documentation available.
# File lib/soap/encodingstyle/literalHandler.rb, line 209
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