【发布时间】:2018-02-20 19:18:41
【问题描述】:
我有一个将图像和视频上传到 Azure 的 Web API。我想将图像大小限制为 5 MG,将视频限制为 100 MG,但我尝试了 Web.config 最大值,但我不知道如何将其应用于需要不同大小的视频和图像。
<system.web>
<httpRuntime maxRequestLength="5000" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="5000" />
</requestFiltering>
</security>
</system.webServer>
谢谢
【问题讨论】:
标签: c# azure asp.net-web-api2 azure-storage