method
on_outbound_headeritem
v1_8_7_72 -
Show latest stable
- Class:
SOAP::Header::Handler
on_outbound_headeritem()public
No documentation available.
# File lib/soap/header/handler.rb, line 37
def on_outbound_headeritem
item = on_outbound
if item.nil?
nil
elsif item.is_a?(::SOAP::SOAPHeaderItem)
item.elename = @elename
item
else
item.elename = @elename
::SOAP::SOAPHeaderItem.new(item, @mustunderstand, @encodingstyle)
end
end