Binding.BuildChannelListener 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.
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified.
Overloads
BuildChannelListener<TChannel>(Object[]) |
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified. |
BuildChannelListener<TChannel>(BindingParameterCollection) |
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified by a collection of binding parameters. |
BuildChannelListener<TChannel>(Uri, Object[]) |
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified. |
BuildChannelListener<TChannel>(Uri, BindingParameterCollection) |
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified. |
BuildChannelListener<TChannel>(Uri, String, Object[]) |
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified. |
BuildChannelListener<TChannel>(Uri, String, BindingParameterCollection) |
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified. |
BuildChannelListener<TChannel>(Uri, String, ListenUriMode, Object[]) |
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified. |
BuildChannelListener<TChannel>(Uri, String, ListenUriMode, BindingParameterCollection) |
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified. |
BuildChannelListener<TChannel>(Object[])
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(... cli::array <System::Object ^> ^ parameters);
public virtual System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (params object[] parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member BuildChannelListener : obj[] -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.BuildChannelListener : obj[] -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function BuildChannelListener(Of TChannel As {Class, IChannel}) (ParamArray parameters As Object()) As IChannelListener(Of TChannel)
Type Parameters
- TChannel
The type of channel the channel listener accepts.
Parameters
- parameters
- Object[]
The object array that specifies requirements for the channel factory built.
Returns
An IChannelListener<TChannel> of type TChannel
that satisfies the features specified.
Exceptions
Transport element is missing or out of order or scheme is invalid or the message version is not specified.
Applies to
BuildChannelListener<TChannel>(BindingParameterCollection)
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified by a collection of binding parameters.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(System::ServiceModel::Channels::BindingParameterCollection ^ parameters);
public virtual System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (System.ServiceModel.Channels.BindingParameterCollection parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member BuildChannelListener : System.ServiceModel.Channels.BindingParameterCollection -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.BuildChannelListener : System.ServiceModel.Channels.BindingParameterCollection -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function BuildChannelListener(Of TChannel As {Class, IChannel}) (parameters As BindingParameterCollection) As IChannelListener(Of TChannel)
Type Parameters
- TChannel
The type of channel the channel listener accepts.
Parameters
- parameters
- BindingParameterCollection
The BindingParameterCollection that specifies requirements for the channel listener that is built.
Returns
An IChannelListener<TChannel> of type TChannel
that satisfies the features specified.
Exceptions
Transport element is missing or out of order or scheme is invalid or the message version is not specified.
Applies to
BuildChannelListener<TChannel>(Uri, Object[])
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(Uri ^ listenUriBaseAddress, ... cli::array <System::Object ^> ^ parameters);
public virtual System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (Uri listenUriBaseAddress, params object[] parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member BuildChannelListener : Uri * obj[] -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.BuildChannelListener : Uri * obj[] -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function BuildChannelListener(Of TChannel As {Class, IChannel}) (listenUriBaseAddress As Uri, ParamArray parameters As Object()) As IChannelListener(Of TChannel)
Type Parameters
- TChannel
The type of channel the channel listener accepts.
Parameters
- parameters
- Object[]
The object array that specifies requirements for the channel factory that is built.
Returns
An IChannelListener<TChannel> of type TChannel
that satisfies the features specified.
Exceptions
Transport element is missing or out of order or scheme is invalid or the message version is not specified.
Applies to
BuildChannelListener<TChannel>(Uri, BindingParameterCollection)
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(Uri ^ listenUriBaseAddress, System::ServiceModel::Channels::BindingParameterCollection ^ parameters);
public virtual System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (Uri listenUriBaseAddress, System.ServiceModel.Channels.BindingParameterCollection parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member BuildChannelListener : Uri * System.ServiceModel.Channels.BindingParameterCollection -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.BuildChannelListener : Uri * System.ServiceModel.Channels.BindingParameterCollection -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function BuildChannelListener(Of TChannel As {Class, IChannel}) (listenUriBaseAddress As Uri, parameters As BindingParameterCollection) As IChannelListener(Of TChannel)
Type Parameters
- TChannel
The type of channel the channel listener accepts.
Parameters
- parameters
- BindingParameterCollection
The BindingParameterCollection that specifies requirements for the channel listener that is built.
Returns
An IChannelListener<TChannel> of type TChannel
that satisfies the features specified.
Exceptions
Transport element is missing or out of order or scheme is invalid or the message version is not specified.
Applies to
BuildChannelListener<TChannel>(Uri, String, Object[])
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(Uri ^ listenUriBaseAddress, System::String ^ listenUriRelativeAddress, ... cli::array <System::Object ^> ^ parameters);
public virtual System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (Uri listenUriBaseAddress, string listenUriRelativeAddress, params object[] parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member BuildChannelListener : Uri * string * obj[] -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.BuildChannelListener : Uri * string * obj[] -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function BuildChannelListener(Of TChannel As {Class, IChannel}) (listenUriBaseAddress As Uri, listenUriRelativeAddress As String, ParamArray parameters As Object()) As IChannelListener(Of TChannel)
Type Parameters
- TChannel
The type of channel the channel listener accepts.
Parameters
- listenUriRelativeAddress
- String
The address, relative to the base address, on which the service listens.
- parameters
- Object[]
The object array that specifies requirements for the channel factory that is built.
Returns
An IChannelListener<TChannel> of type TChannel
that satisfies the features specified.
Exceptions
Transport element is missing or out of order or scheme is invalid or the message version is not specified.
Applies to
BuildChannelListener<TChannel>(Uri, String, BindingParameterCollection)
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(Uri ^ listenUriBaseAddress, System::String ^ listenUriRelativeAddress, System::ServiceModel::Channels::BindingParameterCollection ^ parameters);
public virtual System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (Uri listenUriBaseAddress, string listenUriRelativeAddress, System.ServiceModel.Channels.BindingParameterCollection parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member BuildChannelListener : Uri * string * System.ServiceModel.Channels.BindingParameterCollection -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.BuildChannelListener : Uri * string * System.ServiceModel.Channels.BindingParameterCollection -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function BuildChannelListener(Of TChannel As {Class, IChannel}) (listenUriBaseAddress As Uri, listenUriRelativeAddress As String, parameters As BindingParameterCollection) As IChannelListener(Of TChannel)
Type Parameters
- TChannel
The type of channel the channel listener accepts.
Parameters
- listenUriRelativeAddress
- String
The address, relative to the base address, on which the service listens.
- parameters
- BindingParameterCollection
The BindingParameterCollection that specifies requirements for the channel listener that is built.
Returns
An IChannelListener<TChannel> of type TChannel
that satisfies the features specified.
Exceptions
Transport element is missing or out of order or scheme is invalid or the message version is not specified.
Applies to
BuildChannelListener<TChannel>(Uri, String, ListenUriMode, Object[])
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(Uri ^ listenUriBaseAddress, System::String ^ listenUriRelativeAddress, System::ServiceModel::Description::ListenUriMode listenUriMode, ... cli::array <System::Object ^> ^ parameters);
public virtual System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (Uri listenUriBaseAddress, string listenUriRelativeAddress, System.ServiceModel.Description.ListenUriMode listenUriMode, params object[] parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member BuildChannelListener : Uri * string * System.ServiceModel.Description.ListenUriMode * obj[] -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.BuildChannelListener : Uri * string * System.ServiceModel.Description.ListenUriMode * obj[] -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function BuildChannelListener(Of TChannel As {Class, IChannel}) (listenUriBaseAddress As Uri, listenUriRelativeAddress As String, listenUriMode As ListenUriMode, ParamArray parameters As Object()) As IChannelListener(Of TChannel)
Type Parameters
- TChannel
The type of channel the channel listener accepts.
Parameters
- listenUriRelativeAddress
- String
The address, relative to the base address, on which the service listens.
- listenUriMode
- ListenUriMode
A value of the ListenUriMode that indicates whether the transport must ensure that the URI provided for the service to listen on is unique or can be used exactly as provided.
- parameters
- Object[]
The object array that specifies requirements for the channel factory that is built.
Returns
An IChannelListener<TChannel> of type TChannel
that satisfies the features specified.
Exceptions
Transport element is missing or out of order or scheme is invalid or the message version is not specified.
Applies to
BuildChannelListener<TChannel>(Uri, String, ListenUriMode, BindingParameterCollection)
Builds the channel listener on the service that accepts a specified type of channel and that satisfies the features specified.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual System::ServiceModel::Channels::IChannelListener<TChannel> ^ BuildChannelListener(Uri ^ listenUriBaseAddress, System::String ^ listenUriRelativeAddress, System::ServiceModel::Description::ListenUriMode listenUriMode, System::ServiceModel::Channels::BindingParameterCollection ^ parameters);
public virtual System.ServiceModel.Channels.IChannelListener<TChannel> BuildChannelListener<TChannel> (Uri listenUriBaseAddress, string listenUriRelativeAddress, System.ServiceModel.Description.ListenUriMode listenUriMode, System.ServiceModel.Channels.BindingParameterCollection parameters) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member BuildChannelListener : Uri * string * System.ServiceModel.Description.ListenUriMode * System.ServiceModel.Channels.BindingParameterCollection -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.BuildChannelListener : Uri * string * System.ServiceModel.Description.ListenUriMode * System.ServiceModel.Channels.BindingParameterCollection -> System.ServiceModel.Channels.IChannelListener<'Channel (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)> (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function BuildChannelListener(Of TChannel As {Class, IChannel}) (listenUriBaseAddress As Uri, listenUriRelativeAddress As String, listenUriMode As ListenUriMode, parameters As BindingParameterCollection) As IChannelListener(Of TChannel)
Type Parameters
- TChannel
The type of channel the channel listener accepts.
Parameters
- listenUriRelativeAddress
- String
The address, relative to the base address, on which the service listens.
- listenUriMode
- ListenUriMode
A value of the ListenUriMode that indicates whether the transport must ensure that the URI provided for the service to listen on is unique or can be used exactly as provided.
- parameters
- BindingParameterCollection
The BindingParameterCollection that specifies requirements for the channel listener that is built.
Returns
An IChannelListener<TChannel> of type TChannel
that satisfies the features specified.
Exceptions
Transport element is missing or out of order or scheme is invalid or the message version is not specified.