3 writes to InternalServiceChannel
System.ServiceModel.Primitives (3)
System\ServiceModel\OperationContext.cs (3)
59InternalServiceChannel = serviceChannel; 79InternalServiceChannel = channel; 360InternalServiceChannel = channel;
8 references to InternalServiceChannel
System.ServiceModel.Primitives (8)
System\ServiceModel\Channels\ServiceChannel.cs (2)
536if ((context != null) && (!context.IsUserContext) && (context.InternalServiceChannel == this)) 1179if (context != null && context.InternalServiceChannel == this)
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
372ServiceChannel serviceChannel = OperationContext.Current.InternalServiceChannel;
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
335if (context.InternalServiceChannel == replyChannel)
System\ServiceModel\OperationContext.cs (4)
276if (InternalServiceChannel != null) 278IChannel inner = InternalServiceChannel.InnerChannel; 346if (InternalServiceChannel == null || IsUserContext) 353return (T)InternalServiceChannel.Proxy;