method
find_encodingstyle
v1_8_7_330 -
Show latest stable
- Class:
SOAP::Parser
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