Flowdock
method

on_outbound_headeritem

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::Header::Handler
on_outbound_headeritem() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.