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

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

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

7条回答
  •  既然无缘
    2020-12-04 10:16

    In the new ASP.NET Core MimeMapping can be used with the filename:

    MimeMapping.GetMimeMapping("1.jpg")
    

    Should return image/jpeg.

    All the mappings can be found here and it is also possible to add your own (see e.g. this answer).

提交回复
热议问题