我需要一个建议,为我的自托管WCF服务注册我的Silverlight双工通信(使用PollingDuplexHttpBinding)的自定义绑定扩展。
以下是我从this msdn page获得的绑定详细信息。
<!-- Register the binding extension from the SDK. -->
<extensions>
<bindingExtensions>
<add name="pollingDuplexHttpBinding"
type="System.ServiceModel.Configuration.PollingDuplexHttpBindingCollectionElement,System.ServiceModel.PollingDuplex, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</bindingExtensions>
</extensions>
我需要通过代码隐藏将上面的xml代码添加到我的自定义绑定中。