# File lib_core/rucy/request.rb, line 122
    def line
      method = @method || '-'
      if (@uri) then
        path = @uri
      elsif (@path) then
        path = @path
        path += '?' + @query if @query
      else
        path = '-'
      end
      version = @version || '-'
      "#{method} #{path} #{version}"
    end