method

find_encodingstyle

ruby latest stable - Class: SOAP::Parser

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.

find_encodingstyle(ns, attrs)
private

No documentation available.

# File lib/soap/parser.rb, line 157
  def find_encodingstyle(ns, attrs)
    attrs.each do |key, value|
      if (ns.compare(@envelopenamespace, AttrEncodingStyle, key))
        return value
      end
    end
    nil
  end