SecurityBindingElement.BuildChannelFactoryCore<TChannel> 方法

定义

实现时创建指定类型的通道工厂。

protected:
generic <typename TChannel>
 abstract System::ServiceModel::Channels::IChannelFactory<TChannel> ^ BuildChannelFactoryCore(System::ServiceModel::Channels::BindingContext ^ context);
protected abstract System.ServiceModel.Channels.IChannelFactory<TChannel> BuildChannelFactoryCore<TChannel> (System.ServiceModel.Channels.BindingContext context);
abstract member BuildChannelFactoryCore : System.ServiceModel.Channels.BindingContext -> System.ServiceModel.Channels.IChannelFactory<'Channel>
Protected MustOverride Function BuildChannelFactoryCore(Of TChannel) (context As BindingContext) As IChannelFactory(Of TChannel)

类型参数

TChannel

通道工厂的类型。

参数

返回

具有指定类型的通道工厂。

例外

contextnull

不支持 TChannel 类型的通道。

注解

BuildChannelFactory执行错误检查的 调用此方法。 当此方法在派生类中实现时,可创建通道工厂,该通道工厂用于创建为此绑定处理传出消息的通道。

适用于