In Files

  • xmlrpc/httpserver.rb

Parent

HttpServer::Request

Classes ————————————————-

Attributes

data[R]
header[R]
method[R]
path[R]
proto[R]

Public Class Methods

new(data, method=nil, path=nil, proto=nil) click to toggle source
 
               # File xmlrpc/httpserver.rb, line 53
def initialize(data, method=nil, path=nil, proto=nil)
  @header, @data = Table.new, data
  @method, @path, @proto = method, path, proto
end
            

Public Instance Methods

content_length() click to toggle source
 
               # File xmlrpc/httpserver.rb, line 58
def content_length
  len = @header['Content-Length']
  return nil if len.nil?
  return len.to_i 
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus