Class MimeUtil
Definition
- Assembly:
- Tizen.Content.MimeType.dll
The MimeUtil API provides functions to map the MIME types to file extensions and vice versa.
C#Copypublic static class MimeUtil
- Inheritance
-
objectMimeUtil
Remarks
Conversions are provided from the file extensions to MIME types and from the MIME types to file extensions.
Methods
Declaration
C#Copypublic static IEnumerable<string> GetFileExtension(string mime)
Parameters
Type | Name | Description |
---|---|---|
string | mime | The MIME type. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><string> | If successful, returns the list of file extension strings for the given MIME type. The array of file extension is without the leading dot ('.'). |
Remarks
Conversions are provided from the file extensions to MIME types and from the MIME types to file extensions.
Examples
Copyvar extColl = MimeUtil.GetFileExtension("video/mpeg"); foreach ( string obj in extColl ) { Console.WriteLine(obj); }
GetMimeType(string)
Gets the MIME type for the given file extension. The MIME type is 'application/octet-stream' if the given file extension is not associated with specific file formats.
Declaration
C#Copypublic static string GetMimeType(string fileExtension)
Parameters
Type | Name | Description |
---|---|---|
string | fileExtension | The file extension. |
Returns
Type | Description |
---|---|
string |
Remarks
Conversions are provided from the file extensions to MIME types and from the MIME types to file extensions.
Examples
Copystring mimeType = MimeUtil.GetMimeType("png");