mime-types – 在ASP.NET 5中使用MimeMapping(vNext)

前端之家收集整理的这篇文章主要介绍了mime-types – 在ASP.NET 5中使用MimeMapping(vNext)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想把我的旧mvc5项目移到mvc6.
代码是:
public string ContentType
{
    get
    {
        if (!string.IsNullOrEmpty(FileName))
            return MimeMapping.GetMimeMapping(FileName);
        return null;
    }
}

错误

The name ‘MimeMapping’ does not exist in the current context

解决方法

以下代码应该工作:
string contentType;
new FileExtensionContentTypeProvider().TryGetContentType(FileName,out contentType);
return contentType ?? "application/octet-stream";
原文链接:https://www.f2er.com/aspnet/249678.html

猜你在找的asp.Net相关文章