c# – 如何以编程方式添加maxItemsInObjectGraph而不使用配置文件?

前端之家收集整理的这篇文章主要介绍了c# – 如何以编程方式添加maxItemsInObjectGraph而不使用配置文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个这样的EndpointAddress
EndpointAddress address = new EndpointAddress("http://example.com/services/OrderService.svc");

但是我无法通过编程方式将行为添加到此端点.

行为如下:

<behaviors>
  <endpointBehaviors>
    <behavior name="NewBehavior">
      <dataContractSerializer maxItemsInObjectGraph="6553600" />
    </behavior>
  </endpointBehaviors>
</behaviors>

解决方法

在服务器上,您必须将其添加到ServiceBehavior属性中:
[ServiceBehavior(MaxItemsInObjectGraph = int.MaxValue)]

在客户端上,您必须将其应用于端点.在此示例中,您可以看到如何将其添加到ChannelFactory中的所有端点:

var factory = new ChannelFactory<IInterface>(...);
foreach (OperationDescription op in factory.Endpoint.Contract.Operations)
    {
        var dataContractBehavior = op.Behaviors.Find<DataContractSerializerOperationBehavior>();
        if (dataContractBehavior != null)
        {
            dataContractBehavior.MaxItemsInObjectGraph = int.MaxValue;
        }
    }
原文链接:https://www.f2er.com/csharp/96444.html

猜你在找的C#相关文章