ASP MVC - Are there any constants for the default content types?

前端 未结 7 1907
囚心锁ツ
囚心锁ツ 2020-12-04 09:53

Is there a set of constants in the framework for all the standard content types?

7条回答
  •  Happy的楠姐
    2020-12-04 10:11

    Please also check this amazing solution in below link (section "Using a static MIME Type Map"):

    https://www.ryadel.com/en/get-file-content-mime-type-from-extension-asp-net-mvc-core/

    You can simply use it like that:

    var mineType= MimeTypeMap.GetMimeType(System.IO.Path.GetExtension(submitted));

提交回复
热议问题