BindingElement.CanBuildChannelListener<TChannel>(BindingContext) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Retorna um valor que indica se o elemento de associação pode criar um ouvinte para um tipo de canal específico.
public:
generic <typename TChannel>
where TChannel : class, System::ServiceModel::Channels::IChannel virtual bool CanBuildChannelListener(System::ServiceModel::Channels::BindingContext ^ context);
public virtual bool CanBuildChannelListener<TChannel> (System.ServiceModel.Channels.BindingContext context) where TChannel : class, System.ServiceModel.Channels.IChannel;
abstract member CanBuildChannelListener : System.ServiceModel.Channels.BindingContext -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
override this.CanBuildChannelListener : System.ServiceModel.Channels.BindingContext -> bool (requires 'Channel : null and 'Channel :> System.ServiceModel.Channels.IChannel)
Public Overridable Function CanBuildChannelListener(Of TChannel As {Class, IChannel}) (context As BindingContext) As Boolean
Parâmetros de tipo
- TChannel
O tipo de canal que o ouvinte aceita.
Parâmetros
- context
- BindingContext
O BindingContext que fornece o contexto para o elemento de associação.
Retornos
true
se o IChannelListener<TChannel> do tipo IChannel puder ser criado pelo elemento de associação; caso contrário, false
.
Exceções
context
é null
.
Exemplos
CustomBinding binding = new CustomBinding();
HttpTransportBindingElement element = new HttpTransportBindingElement();
BindingParameterCollection parameters = new BindingParameterCollection();
Uri baseAddress = new Uri("http://localhost:8000/ChannelApp");
String relAddress = "http://localhost:8000/ChannelApp/service";
BindingContext context = new BindingContext(binding, parameters, baseAddress, relAddress, ListenUriMode.Explicit);
bool bFlag = element.CanBuildChannelListener<IReplyChannel>(context);
Comentários
Use esse método se quiser marcar que o ouvinte de canal para canais do tipo TChannel
possa ser compilado para o context
fornecido antes de tentar criar o ouvinte. Como alternativa, crie o ouvinte de canal chamando BuildChannelListener e capture a exceção gerada se ela não puder ser criada.