2012年4月25日 星期三

{C#} maxItemsInObjectGraph 設定


設定 maxItemsInObjectGraph 值,預設值為:65536

<system.serviceModel>
<behaviors>
        <endpointBehaviors>
          <behavior name="abc">
            <dataContractSerializer maxItemsInObjectGraph="6553600" />
          </behavior>
        </endpointBehaviors>
      </behaviors>


    <client>
      <endpoint address="xxx.asmx  behaviorConfiguration="abc" />

    </client>

</system.serviceModel>