ContentType abstract class
Representation of a content type. An instance of ContentType is immutable.
- Implements
Static Properties
- BINARY → dynamic final
-
Content type for binary data.
- HTML → dynamic final
-
Content type for HTML using UTF-8 encoding.
- JSON → dynamic final
-
Content type for JSON using UTF-8 encoding.
- TEXT → dynamic final
-
Content type for plain text using UTF-8 encoding.
Static Methods
- parse(
String value) → ContentType -
Creates a new content type object from parsing a Content-Type header value. As primary type, sub type and parameter names and values are not case sensitive all these values will be converted to lower case. Parsing this string
Constructors
- ContentType(String primaryType, String subType, { String charset, Map<String, String> parameters }) factory
-
Creates a new content type object setting the primary type and sub type. The charset and additional parameters can also be set using
charset
andparameters
. If charset is passed andparameters
contains charset as well the passedcharset
will override the value in parameters. Keys passed in parameters will be converted to lower case. Thecharset
entry, whether passed ascharset
or inparameters
, will have its value converted to lower-case.
Properties
- charset → String read-only
-
Gets the character set.
- mimeType → String read-only
-
Gets the mime-type, without any parameters.
- primaryType → String read-only
-
Gets the primary type.
- subType → String read-only
-
Gets the sub type.
- hashCode → int read-only, inherited
-
The hash code for this object.
- parameters → Map<String, String> read-only, inherited
-
Gets the map of parameters.
- runtimeType → Type read-only, inherited
-
A representation of the runtime type of the object.
- value → String read-only, inherited
-
Gets the header value.
Operators
- operator ==(
other) → bool inherited -
The equality operator.
Methods
- noSuchMethod(
Invocation invocation) → dynamic inherited -
Invoked when a non-existent method or property is accessed.
- toString(
) → String inherited -
Returns a string representation of this object.
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-io/ContentType-class.html