在运行应用程序之前,如何将app.config文件中的maxReceivedMessageSize和maxBufferSize参数增加到2000000。
最佳答案
您需要在绑定(bind)时执行此操作,但是您需要在客户端和服务器上的上执行此操作。就像是:<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding maxBufferSize="64000000" maxReceivedMessageSize="64000000" />
</basicHttpBinding>
</bindings>
</system.serviceModel>
关于c# - app.config中的maxReceivedMessageSize和maxBufferSize,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14999779/