method
parse_content_type
v5.0.0.1 -
Show latest stable
- Class:
ActionDispatch::Response
parse_content_type()private
No documentation available.
# File actionpack/lib/action_dispatch/http/response.rb, line 406
def parse_content_type
content_type = get_header CONTENT_TYPE
if content_type
type, charset = content_type.split(/;\s*charset=/)
type = nil if type.empty?
ContentTypeHeader.new(type, charset)
else
NullContentTypeHeader
end
end