BindingContext.BuildInnerChannelFactory<TChannel> メソッド

定義

現在のチャネル ファクトリの下に、指定した型のチャネルの内部チャネル ファクトリを作成します。

public:
generic <typename TChannel>
 System::ServiceModel::Channels::IChannelFactory<TChannel> ^ BuildInnerChannelFactory();
public System.ServiceModel.Channels.IChannelFactory<TChannel> BuildInnerChannelFactory<TChannel> ();
member this.BuildInnerChannelFactory : unit -> System.ServiceModel.Channels.IChannelFactory<'Channel>
Public Function BuildInnerChannelFactory(Of TChannel) () As IChannelFactory(Of TChannel)

型パラメーター

TChannel

内部チャネル ファクトリが生成する IChannel オブジェクトの型。

戻り値

現在のチャネル ファクトリの内部チャネル ファクトリを表す IChannelFactory<TChannel> 型の IChannel

CustomBinding binding = new CustomBinding();
BindingParameterCollection bpCol = new BindingParameterCollection();
BindingContext context = new BindingContext(binding, bpCol);
context.BuildInnerChannelFactory<IDuplexChannel>();
Dim binding As New CustomBinding()
Dim bpCol As New BindingParameterCollection()
Dim context As New BindingContext(binding, bpCol)
context.BuildInnerChannelFactory(Of IDuplexChannel)()

適用対象