method

to_s

to_s()
public

No documentation available.

# File lib/webrick/httprequest.rb, line 348
    def to_s # :nodoc:
      ret = @request_line.dup
      @raw_header.each{|line| ret << line }
      ret << CRLF
      ret << body if body
      ret
    end