Method: Puppet::HTTP::ResponseNetHTTP#each_header
- Defined in:
- lib/puppet/http/response_net_http.rb
#each_header {|header, header| ... } ⇒ Object
Yield each header name and value. Returns an enumerator if no block is given.
39 40 41 |
# File 'lib/puppet/http/response_net_http.rb', line 39 def each_header(&block) @nethttp.each_header(&block) end |