# File lib/typhoeus/easy.rb, line 266
    def params=(params)
      @form = Typhoeus::Form.new(params)

      if method == :post
        @form.process!
        if @form.multipart?
          set_option(OPTION_VALUES[:CURLOPT_HTTPPOST], @form)
        else
          self.post_data = @form.to_s
        end
      else
        self.url = "#{url}?#{@form.to_s}"
      end
    end