SecurityBindingElement.BuildChannelListener<TChannel> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
基于 SecurityBindingElement 设置和传入的绑定上下文创建通道侦听器。
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel override System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(System::ServiceModel::Channels::BindingContext ^ context);
public override System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (System.ServiceModel.Channels.BindingContext context) where TChannel : class, System.ServiceModel.Channels.IChannel;
override this.BuildChannelListener : System.ServiceModel.Channels.BindingContext -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overrides Function BuildChannelListener(Of TChannel As {Class, IChannel}) (context As BindingContext) As IChannelListener(Of TChannel)
类型参数
- TChannel
通道侦听器的类型。
参数
- context
- BindingContext
返回
基于 SecurityBindingElement 设置和传入的绑定上下文通道侦听器。
例外
context
为 null
。
不支持 TChannel
类型的通道。
注解
创建的通道工厂为 SOAP 消息安全通道侦听器,其内部有到对应绑定上下文的通道侦听器的引用(包括传输通道侦听器)。
此方法执行参数错误检查,然后调用 BuildChannelListenerCore。 此方法在派生类中实现时可创建通道侦听器,该通道侦听器用于创建为此绑定处理传入消息的通道。