MsmqTransportBindingElement.CanBuildChannelListener<TChannel> Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zwraca wartość logiczną wskazującą, czy można utworzyć odbiornik kanału z podanym kontekstem.
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 kanału do skompilowania odbiornika kanału. Dozwolone typy kanałów to IInputSessionChannel lub IInputChannel klasa.
Parametry
- context
- BindingContext
Element BindingContext , za pomocą którego można skompilować odbiornik kanału.
Zwraca
true
jeśli możesz utworzyć odbiornik kanału z podanym kontekstem; w przeciwnym razie , false
.
Powiązanie jest zwracane true
tylko wtedy, gdy TChannel
jest lub IInputChannel IInputSessionChannel.
Przykłady
if (transportBindingElement.CanBuildChannelListener<IInputChannel>(context))
{
// Do something...
}