requestLimits maxAllowedContentLength是否指发送或接收请求的请求?

时间:2017-01-16 08:12:10

标签: asp.net-mvc request web-config

在客户端(客户端应用程序)的web.config中,我有:

 <requestFiltering>
              <requestLimits maxAllowedContentLength="52428800" maxQueryString="30000" maxUrl="40000" />
 </requestFiltering>

在服务器端,我有:

<requestFiltering>
    <requestLimits maxAllowedContentLength="52428800" />
</requestFiltering>
  1. 客户端requestLimits是否指发送或接收请求?
  2. 服务器端requestLimits是否指发送或接收请求?

1 个答案:

答案 0 :(得分:1)

maxAllowedContentLength属性指定此Web应用程序的请求可以具有的最大字节数。

因此,如果在您调用客户端应用程序的内容中使用它,它仍然适用于对此客户端应用程序发出的请求。当在服务器应用程序中使用时,它适用于对此服务器应用程序的请求。因此,使用何种Web应用程序并不重要:所有Web应用程序都有HTTP请求,此属性控制特定应用程序的此请求主体的最大允许大小。