• <tfoot id='Dxs92'></tfoot>

        <bdo id='Dxs92'></bdo><ul id='Dxs92'></ul>

        <legend id='Dxs92'><style id='Dxs92'><dir id='Dxs92'><q id='Dxs92'></q></dir></style></legend>
        <i id='Dxs92'><tr id='Dxs92'><dt id='Dxs92'><q id='Dxs92'><span id='Dxs92'><b id='Dxs92'><form id='Dxs92'><ins id='Dxs92'></ins><ul id='Dxs92'></ul><sub id='Dxs92'></sub></form><legend id='Dxs92'></legend><bdo id='Dxs92'><pre id='Dxs92'><center id='Dxs92'></center></pre></bdo></b><th id='Dxs92'></th></span></q></dt></tr></i><div id='Dxs92'><tfoot id='Dxs92'></tfoot><dl id='Dxs92'><fieldset id='Dxs92'></fieldset></dl></div>

        <small id='Dxs92'></small><noframes id='Dxs92'>

      1. 在 ASP.NET Core 中使用 MimeMapping

        时间:2023-06-08

        <tfoot id='VFkiZ'></tfoot>
        • <small id='VFkiZ'></small><noframes id='VFkiZ'>

              <legend id='VFkiZ'><style id='VFkiZ'><dir id='VFkiZ'><q id='VFkiZ'></q></dir></style></legend>
            1. <i id='VFkiZ'><tr id='VFkiZ'><dt id='VFkiZ'><q id='VFkiZ'><span id='VFkiZ'><b id='VFkiZ'><form id='VFkiZ'><ins id='VFkiZ'></ins><ul id='VFkiZ'></ul><sub id='VFkiZ'></sub></form><legend id='VFkiZ'></legend><bdo id='VFkiZ'><pre id='VFkiZ'><center id='VFkiZ'></center></pre></bdo></b><th id='VFkiZ'></th></span></q></dt></tr></i><div id='VFkiZ'><tfoot id='VFkiZ'></tfoot><dl id='VFkiZ'><fieldset id='VFkiZ'></fieldset></dl></div>

                <bdo id='VFkiZ'></bdo><ul id='VFkiZ'></ul>
                  <tbody id='VFkiZ'></tbody>

                • 本文介绍了在 ASP.NET Core 中使用 MimeMapping的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试将我的旧 mvc5 项目移动到 asp net core.旧代码是:

                  I'm trying to move my old mvc5 project to asp net core. Old code was:

                  public string ContentType
                  {
                      get
                      {
                          if (!string.IsNullOrEmpty(FileName))
                              return MimeMapping.GetMimeMapping(FileName);
                          return null;
                      }
                  }
                  

                  错误是

                  当前上下文中不存在名称MimeMapping"

                  The name 'MimeMapping' does not exist in the current context

                  推荐答案

                  以下代码应该可以工作:

                  The following code should work:

                  string contentType;
                  new FileExtensionContentTypeProvider().TryGetContentType(FileName, out contentType);
                  return contentType ?? "application/octet-stream";
                  

                  这篇关于在 ASP.NET Core 中使用 MimeMapping的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:包含重复的“内容"项目.默认情况下,.NET SDK 包含项目目录中的“内容"项 下一篇:无法使用 UrlHelper

                  相关文章

                  <small id='j9UI7'></small><noframes id='j9UI7'>

                    <i id='j9UI7'><tr id='j9UI7'><dt id='j9UI7'><q id='j9UI7'><span id='j9UI7'><b id='j9UI7'><form id='j9UI7'><ins id='j9UI7'></ins><ul id='j9UI7'></ul><sub id='j9UI7'></sub></form><legend id='j9UI7'></legend><bdo id='j9UI7'><pre id='j9UI7'><center id='j9UI7'></center></pre></bdo></b><th id='j9UI7'></th></span></q></dt></tr></i><div id='j9UI7'><tfoot id='j9UI7'></tfoot><dl id='j9UI7'><fieldset id='j9UI7'></fieldset></dl></div>
                      <bdo id='j9UI7'></bdo><ul id='j9UI7'></ul>
                    1. <tfoot id='j9UI7'></tfoot>
                      <legend id='j9UI7'><style id='j9UI7'><dir id='j9UI7'><q id='j9UI7'></q></dir></style></legend>