Binding.CanBuildChannelListener Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a value that indicates whether the current binding can build a channel listener stack on the service that satisfies some specified criteria.
Overloads
CanBuildChannelListener<TChannel>(Object[]) |
Returns a value that indicates whether the current binding can build a channel listener stack on the service that satisfies the criteria specified in an array of objects. |
CanBuildChannelListener<TChannel>(BindingParameterCollection) |
Returns a value that indicates whether the current binding can build a channel listener stack on the service that satisfies the collection of binding parameters specified. |
CanBuildChannelListener<TChannel>(Object[])
Returns a value that indicates whether the current binding can build a channel listener stack on the service that satisfies the criteria specified in an array of objects.
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
Type Parameters
- TChannel
The type of channel for which the listener is being tested.
Parameters
- parameters
- Object[]
The object array that specifies requirements for the channel factory that is built.
Returns
true
if the specified channel listener stack can be build on the service; otherwise, false
.
Remarks
Use this method if you want to check that the channel listener for channels of type TChannel
can be build for the binding parameters
specified before attempting to actually build the listener. Alternatively, try to build the channel listener by calling BuildChannelListener<TChannel>(Object[]) and catch the exception generated if it cannot be built.
Applies to
CanBuildChannelListener<TChannel>(BindingParameterCollection)
Returns a value that indicates whether the current binding can build a channel listener stack on the service that satisfies the collection of binding parameters specified.
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
Type Parameters
- TChannel
The type of channel for which the listener is being tested.
Parameters
- parameters
- BindingParameterCollection
The BindingParameterCollection that specifies requirements for the channel listener that is built.
Returns
true
if the specified channel listener stack can be build on the service; otherwise, false
.
Remarks
Use this method if you want to check that the channel listener for channels of type TChannel
can be build for the binding parameters
specified before attempting to actually build the listener. Alternatively, try to build the channel listener by calling BuildChannelListener<TChannel>(BindingParameterCollection) and catch the exception generated if it cannot be built.