mirror of
https://github.com/wagesj45/MimeTypeList.git
synced 2024-12-21 22:22:30 -06:00
Mirror of wagesj45/MimeTypeList.
MimeTypeList | ||
.gitattributes | ||
.gitignore | ||
LICENSE | ||
README.md |
MimeTypeList
Provides a hard-coded collection of file extension and mime type mapping. This project was inspired by samuelneff/MimeTypeMap. This project uses the data from that project to create classes with members for each extension and mime type for lookups.
You can access the values with the FileExtensions
and MimeTypes
static classes:
FileExtensions._ruleset
MimeTypes.application.onenote
Installation
You can install MimeTypeList from Nuget.org on its package page.
Usage
After installation MimeTypeList, include the following using statement in your class:
using MimeTypeList;
Getting Extensions
Console.WriteLine(MimeTypes.application.onenote); // ".one"
Getting Mime Types
Console.WriteLine(FileExtensions._ruleset); // "application/xml"