Method GetMimeType
GetMimeType(string, string?)
Gets the content mime-type from the specified file extension.
public static string GetMimeType(string fileExtension, string? fallback = null)
Parameters
fileExtension
stringThe file extension, with or without the initial dot.
fallback
stringOptional. The default mime-type when the file best mime-type is not found. If this argument is null, DefaultMimeType is used.
Returns
- string
The best matched mime-type, or the default if no mime-type was matched with the specified extension.