method

decode_attr_value

ruby latest stable - Class: SOAP::EncodingStyle::SOAPHandler

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

decode_attr_value(ns, qname, value)
private

No documentation available.

# File lib/soap/encodingstyle/soapHandler.rb, line 539
  def decode_attr_value(ns, qname, value)
    if /\A#/ =~ value
      o = SOAPReference.decode(nil, value)
      @refpool << o
      o
    else
      value
    end
  end