我需要一个建议来为我的自托管 WCF 服务注册我的 Silverlight 双工通信(使用 PollingDuplexHttpBinding)的自定义绑定扩展。
以下是我从这个 msdn 页面获得的绑定详细信息。
<!-- 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 代码添加到我的自定义绑定中。