The MimeType class is a collection of most commonly used MIME types.
More...
|
|
const string | kAny = "*/*" |
| | The MIME value used to determine any file. (Readonly)
|
| |
|
const string | kPlainText = "text/plain" |
| | The MIME value used to determine plain text file. (Readonly)
|
| |
|
const string | kHtmlText = "text/html" |
| | The MIME value used to determine normal web pages. (Readonly)
|
| |
|
const string | kJavaScriptText = "text/javascript" |
| | The MIME value used to determine javascript content. (Readonly)
|
| |
|
const string | kAllImages = "image/*" |
| | The MIME value used to determine all image files. (Readonly)
|
| |
|
const string | kJPGImage = "image/jpeg" |
| | The MIME value used to determine jpg image file. (Readonly)
|
| |
|
const string | kPNGImage = "image/png" |
| | The MIME value used to determine png image file. (Readonly)
|
| |
|
const string | kGIFImage = "image/gif" |
| | The MIME value used to determine gif image file. (Readonly)
|
| |
|
const string | kPDF = "application/pdf" |
| | The MIME value used to determine AdobeĀ® PDF documents. (Readonly)
|
| |
|
const string | kAllVideos = "video/*" |
| | The MIME value used to determine all video files. (Readonly)
|
| |
|
const string | kMP4Video = "video/mp4" |
| | The MIME value used to determine mp4 video. (Readonly)
|
| |
|
const string | kAllAudio = "audio/*" |
| | The MIME value used to determine all audio files. (Readonly)
|
| |
MIME types enable apps to recognize the filetype of a file.