OneWayBindingElement.CanBuildChannelListener<TChannel> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示是否可以生成指定类型的通道侦听器。
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel override bool CanBuildChannelListener(System::ServiceModel::Channels::BindingContext ^ context);
public override bool CanBuildChannelListener<TChannel> (System.ServiceModel.Channels.BindingContext context) where TChannel : class, System.ServiceModel.Channels.IChannel;
override this.CanBuildChannelListener : System.ServiceModel.Channels.BindingContext -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overrides Function CanBuildChannelListener(Of TChannel As {Class, IChannel}) (context As BindingContext) As Boolean
类型参数
- TChannel
要生成的通道侦听器的类型。
参数
- context
- BindingContext
为绑定元素提供上下文的 BindingContext。
返回
如果可以生成指定类型的通道侦听器,则为 true
;否则为 false
。 默认值为 false
。
例外
context
为 null
。
注解
在尝试创建通道侦听器之前应调用此方法。
true
是 TChannel
,并且绑定堆栈中当前绑定的下一个绑定是 IInputChannel 或 IDuplexSessionChannel 时,此方法将返回 IReplyChannel。