WSDualHttpBinding.CreateBindingElements 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个包含在当前绑定中的已排序的绑定元素集合。
public:
override System::ServiceModel::Channels::BindingElementCollection ^ CreateBindingElements();
public override System.ServiceModel.Channels.BindingElementCollection CreateBindingElements ();
override this.CreateBindingElements : unit -> System.ServiceModel.Channels.BindingElementCollection
Public Overrides Function CreateBindingElements () As BindingElementCollection
返回
一个包含 BindingElementCollection 和 TransactionFlowBindingElement(由于 WSDualHttpBinding 要求可靠对话)的 ReliableSessionBindingElement。
示例
下面的示例演示如何获取一个包含在当前绑定中的绑定元素的有序集合。
BindingElementCollection bec = binding.CreateBindingElements();
Dim bec As BindingElementCollection = binding.CreateBindingElements()