class HttpServer::Response

Attributes

body[RW]
header[R]
status[RW]
status_message[RW]

Public Class Methods

new(status=200) click to toggle source
# File lib/xmlrpc/httpserver.rb, line 63
def initialize(status=200)
  @status = status
  @status_message = nil
  @header = Table.new
end