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