2 writes to Proxy
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
345serviceChannel.Proxy = CreateProxy<TChannel>(MessageDirection.Input, serviceChannel);
System\ServiceModel\Dispatcher\ChannelHandler.cs (1)
478channel.Proxy = ServiceChannelFactory.CreateProxy(contractType, callbackType, MessageDirection.Output, channel);
10 references to Proxy
System.ServiceModel.Primitives (10)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1449_extensions = new ExtensionCollection<IContextChannel>((IContextChannel)Proxy, ThisLock);
System\ServiceModel\Channels\ServiceChannelFactory.cs (2)
347IClientChannel clientChannel = serviceChannel.Proxy as IClientChannel; 355return (TChannel)serviceChannel.Proxy;
System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
484_listener.ChannelDispatcher.InitializeChannel((IClientChannel)channel.Proxy); 1168IContextChannel transparentProxy = _requestInfo.Channel.Proxy as IContextChannel;
System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (2)
107ServiceChannel clientChannel = ServiceChannelFactory.GetServiceChannel(rpc.Channel.Proxy); 244_proxy = ServiceChannelFactory.GetServiceChannel(channel.Proxy);
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (2)
108rpc.Correlation[offset + i] = _messageInspectors[i].AfterReceiveRequest(ref rpc.Request, (IClientChannel)rpc.Channel.Proxy, rpc.InstanceContext); 322IChannel proxy = rpc.Channel.Proxy as IChannel;
System\ServiceModel\OperationContext.cs (1)
353return (T)InternalServiceChannel.Proxy;