Binding.CanBuildChannelListener 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回值,這個值指出目前的繫結是否可以在服務上建置滿足某個指定之準則的通道接聽程式堆疊。
多載
CanBuildChannelListener<TChannel>(Object[]) |
傳回值,這個值指出目前的繫結是否可以在服務上建置滿足物件陣列中指定之準則的通道接聽程式堆疊。 |
CanBuildChannelListener<TChannel>(BindingParameterCollection) |
傳回值,這個值指出目前的繫結是否可以在服務上建置滿足指定之繫結參數集合的通道接聽程式堆疊。 |
CanBuildChannelListener<TChannel>(Object[])
傳回值,這個值指出目前的繫結是否可以在服務上建置滿足物件陣列中指定之準則的通道接聽程式堆疊。
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel bool CanBuildChannelListener(... cli::array <System::Object ^> ^ parameters);
public bool CanBuildChannelListener<TChannel> (params object[] parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
member this.CanBuildChannelListener : obj[] -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Function CanBuildChannelListener(Of TChannel As {Class, IChannel}) (ParamArray parameters As Object()) As Boolean
類型參數
- TChannel
正在測試之接聽程式所針對的通道型別。
參數
- parameters
- Object[]
物件陣列,可指定所建置之通道處理站的需求。
傳回
如果可以在服務上建置指定的通道接聽程式堆疊則為 true
,否則為 false
。
備註
如果您想要檢查,TChannel
型別之通道的通道接聽程式可以在嘗試實際建置接聽程式之前,針對指定的 parameters
繫結進行建置,請使用這個方法。 或者,請嘗試呼叫 BuildChannelListener<TChannel>(Object[]) 來建置通道接聽程式並攔截產生的例外狀況 (如果無法建置的話)。
適用於
CanBuildChannelListener<TChannel>(BindingParameterCollection)
傳回值,這個值指出目前的繫結是否可以在服務上建置滿足指定之繫結參數集合的通道接聽程式堆疊。
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual bool CanBuildChannelListener(System::ServiceModel::Channels::BindingParameterCollection ^ parameters);
public virtual bool CanBuildChannelListener<TChannel> (System.ServiceModel.Channels.BindingParameterCollection parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member CanBuildChannelListener : System.ServiceModel.Channels.BindingParameterCollection -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.CanBuildChannelListener : System.ServiceModel.Channels.BindingParameterCollection -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function CanBuildChannelListener(Of TChannel As {Class, IChannel}) (parameters As BindingParameterCollection) As Boolean
類型參數
- TChannel
正在測試之接聽程式所針對的通道型別。
參數
- parameters
- BindingParameterCollection
指定所建置之通道接聽程式需求的 BindingParameterCollection。
傳回
如果可以在服務上建置指定的通道接聽程式堆疊則為 true
,否則為 false
。
備註
如果您想要檢查,TChannel
型別之通道的通道接聽程式可以在嘗試實際建置接聽程式之前,針對指定的 parameters
繫結進行建置,請使用這個方法。 或者,請嘗試呼叫 BuildChannelListener<TChannel>(BindingParameterCollection) 來建置通道接聽程式並攔截產生的例外狀況 (如果無法建置的話)。