1 type derived from ServiceChannelFactory
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
396internal abstract class TypedServiceChannelFactory<TChannel> : ServiceChannelFactory
15 references to ServiceChannelFactory
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (4)
166return ServiceChannelFactory.BuildChannelFactory(this.Endpoint, this.UseActiveAutoClose); 513internal ServiceChannelFactory ServiceChannelFactory 515get { return (ServiceChannelFactory)InnerFactory; } 664ServiceChannel serviceChannel = ServiceChannelFactory.GetServiceChannel(channel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (3)
38private readonly ServiceChannelFactory _factory; 77internal ServiceChannel(ServiceChannelFactory factory, IChannelBinder binder) 244internal ServiceChannelFactory Factory
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (3)
83public static ServiceChannelFactory BuildChannelFactory(ChannelBuilder channelBuilder, ClientRuntime clientRuntime) 100public static ServiceChannelFactory BuildChannelFactory(ServiceEndpoint serviceEndpoint) 105public static ServiceChannelFactory BuildChannelFactory(ServiceEndpoint serviceEndpoint, bool useActiveAutoClose)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
486channel.Proxy = ServiceChannelFactory.CreateProxy(contractType, callbackType, MessageDirection.Output, channel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (2)
122ServiceChannel clientChannel = ServiceChannelFactory.GetServiceChannel(rpc.Channel.Proxy); 255_proxy = ServiceChannelFactory.GetServiceChannel(channel.Proxy);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InstanceContextProviderBase.cs (1)
46serviceChannel = ServiceChannelFactory.GetServiceChannel(channel);
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationContext.cs (1)
44serviceChannel = ServiceChannelFactory.GetServiceChannel(channel);