1 type derived from ServiceChannelFactory
System.ServiceModel (1)
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
425
abstract class TypedServiceChannelFactory<TChannel> :
ServiceChannelFactory
41 references to ServiceChannelFactory
System.ServiceModel (41)
System\ServiceModel\Administration\ServiceInstanceProvider.cs (1)
362
ServiceChannel serviceChannel =
ServiceChannelFactory
.GetServiceChannel(channel);
System\ServiceModel\ChannelFactory.cs (4)
195
return
ServiceChannelFactory
.BuildChannelFactory(this.Endpoint, this.UseActiveAutoClose);
644
internal
ServiceChannelFactory
ServiceChannelFactory
646
get { return (
ServiceChannelFactory
)InnerFactory; }
917
ServiceChannel serviceChannel =
ServiceChannelFactory
.GetServiceChannel(channel);
System\ServiceModel\Channels\ServiceChannel.cs (3)
41
readonly
ServiceChannelFactory
factory;
85
internal ServiceChannel(
ServiceChannelFactory
factory, IChannelBinder binder)
252
internal
ServiceChannelFactory
Factory
System\ServiceModel\Channels\ServiceChannelFactory.cs (3)
85
public static
ServiceChannelFactory
BuildChannelFactory(ChannelBuilder channelBuilder, ClientRuntime clientRuntime)
102
public static
ServiceChannelFactory
BuildChannelFactory(ServiceEndpoint serviceEndpoint)
107
public static
ServiceChannelFactory
BuildChannelFactory(ServiceEndpoint serviceEndpoint, bool useActiveAutoClose)
System\ServiceModel\ComIntegration\IProvideChannelBuilderSettings.cs (2)
15
ServiceChannelFactory
ServiceChannelFactoryReadWrite
19
ServiceChannelFactory
ServiceChannelFactoryReadOnly
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (6)
30
ServiceChannelFactory
serviceChannelFactory = null;
41
ServiceChannelFactory
IProvideChannelBuilderSettings.ServiceChannelFactoryReadWrite
59
ServiceChannelFactory
IProvideChannelBuilderSettings.ServiceChannelFactoryReadOnly
144
private
ServiceChannelFactory
CreateServiceChannelFactory()
146
serviceChannelFactory =
ServiceChannelFactory
.BuildChannelFactory(serviceEndpoint) as
ServiceChannelFactory
;
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (7)
24
ServiceChannelFactory
serviceChannelFactory = null;
51
ServiceChannelFactory
IProvideChannelBuilderSettings.ServiceChannelFactoryReadWrite
61
ServiceChannelFactory
IProvideChannelBuilderSettings.ServiceChannelFactoryReadOnly
168
private
ServiceChannelFactory
CreateServiceChannelFactory()
170
ServiceChannelFactory
serviceChannelFactory =
ServiceChannelFactory
.BuildChannelFactory(serviceEndpoint) as
ServiceChannelFactory
;
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (6)
30
ServiceChannelFactory
serviceChannelFactory = null;
39
ServiceChannelFactory
IProvideChannelBuilderSettings.ServiceChannelFactoryReadWrite
57
ServiceChannelFactory
IProvideChannelBuilderSettings.ServiceChannelFactoryReadOnly
138
private
ServiceChannelFactory
CreateServiceChannelFactory()
140
serviceChannelFactory =
ServiceChannelFactory
.BuildChannelFactory(serviceEndpoint) as
ServiceChannelFactory
;
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
740
channel.Proxy =
ServiceChannelFactory
.CreateProxy(contractType, callbackType, MessageDirection.Output, channel);
System\ServiceModel\Dispatcher\IInstanceContextProvider.cs (1)
72
serviceChannel =
ServiceChannelFactory
.GetServiceChannel(channel);
System\ServiceModel\OperationContext.cs (1)
52
serviceChannel =
ServiceChannelFactory
.GetServiceChannel(channel);
System\ServiceModel\Security\NegotiationTokenProvider.cs (2)
125
ServiceChannelFactory
serviceChannelFactory =
ServiceChannelFactory
.BuildChannelFactory(channelBuilder, clientRuntime);
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (4)
424
ServiceChannelFactory
serviceChannelFactory =
ServiceChannelFactory
.BuildChannelFactory(channelBuilder, clientRuntime);
1084
ServiceChannelFactory
serviceChannelFactory;
1086
public RequestChannelFactory(
ServiceChannelFactory
serviceChannelFactory)