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。