Sdílet prostřednictvím


BinaryMessageEncodingBindingElement.CanBuildChannelListener<TChannel> Metoda

Definice

Vrátí hodnotu, která označuje, zda aktuální vazba může sestavit naslouchací proces pro zadaný typ kanálu a kontextu.

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

Parametry typu

TChannel

Typ kanálu, který naslouchací proces kanálu přijímá.

Parametry

context
BindingContext

To BindingContext je pro naslouchací proces.

Návraty

Boolean

true pokud je možné naslouchací proces kanálu sestavit v dané službě; falsev opačném případě .

Příklady

be.CanBuildChannelListener<IDuplexChannel>(context2);
be.CanBuildChannelListener(Of IDuplexChannel)(context2)

Platí pro