# File lib/http-access2/http.rb, line 193
    def get(key = nil)
      if !key
        @header_item
      else
        @header_item.find_all { |pair| pair[0].upcase == key.upcase }
      end
    end