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