2 writes to Proxy
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
345serviceChannel.Proxy = CreateProxy<TChannel>(MessageDirection.Input, serviceChannel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
486channel.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)
347IClientChannel clientChannel = serviceChannel.Proxy as IClientChannel; 357current.InstanceContext.WmiChannels.Add((IChannel)serviceChannel.Proxy); 360return (TChannel)serviceChannel.Proxy;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
492_listener.ChannelDispatcher.InitializeChannel((IClientChannel)channel.Proxy); 1161IContextChannel transparentProxy = _requestInfo.Channel.Proxy as IContextChannel;
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\ImmutableDispatchRuntime.cs (1)
256IChannel proxy = rpc.Channel.Proxy as IChannel;
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationContext.cs (1)
317return (T)_channel.Proxy;