method
content_length
v1_9_2_180 -
Show latest stable
- Class:
WEBrick::HTTPResponse
content_length()public
No documentation available.
# File lib/webrick/httpresponse.rb, line 65
def content_length
if len = self['content-length']
return Integer(len)
end
end