2 writes to Proxy
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
345
serviceChannel.
Proxy
= CreateProxy<TChannel>(MessageDirection.Input, serviceChannel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
486
channel.
Proxy
= ServiceChannelFactory.CreateProxy(contractType, callbackType, MessageDirection.Output, channel);
10 references to Proxy
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1453
_extensions = new ExtensionCollection<IContextChannel>((IContextChannel)
Proxy
, ThisLock);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (3)
347
IClientChannel clientChannel = serviceChannel.
Proxy
as IClientChannel;
357
current.InstanceContext.WmiChannels.Add((IChannel)serviceChannel.
Proxy
);
360
return (TChannel)serviceChannel.
Proxy
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
492
_listener.ChannelDispatcher.InitializeChannel((IClientChannel)channel.
Proxy
);
1161
IContextChannel transparentProxy = _requestInfo.Channel.
Proxy
as IContextChannel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (2)
122
ServiceChannel clientChannel = ServiceChannelFactory.GetServiceChannel(rpc.Channel.
Proxy
);
255
_proxy = ServiceChannelFactory.GetServiceChannel(channel.
Proxy
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
256
IChannel proxy = rpc.Channel.
Proxy
as IChannel;
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationContext.cs (1)
317
return (T)_channel.
Proxy
;