# File lib/http-access2/http.rb, line 333
    def set_content(body, boundary = nil)
      if body.respond_to?(:read)
        @body = body
      elsif boundary
        @body = Message.create_query_multipart_str(body, boundary)
      else
        @body = Message.create_query_part_str(body)
      end
    end