MimeTypeFromFileName(String) Method
Creates an appropriate
MimeType instance for a given
file name.
Namespace: FolkerKinzel.MimeTypesAssembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
public static MimeType FromFileName(
string? fileName
)
Public Shared Function FromFileName (
fileName As String
) As MimeType
public:
static MimeType^ FromFileName(
String^ fileName
)
static member FromFileName :
fileName : string -> MimeType
- fileName String
- A file path, file name, file type extension (no matter whether with or without
the period "."), or null.
MimeTypeAn appropriate
MimeType instance for
fileName.
Internally a small memory cache is used to find often used file type extensions faster. You
can enlarge the size of this cache with
MimeCache.EnlargeCapacity(int) or you can delete it
with
MimeCache.Clear() if your application does not need it anymore.