3 instantiations of ServiceChannel
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
312ServiceChannel serviceChannel = new ServiceChannel(this, binder);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
431endpoint.DatagramChannel = new ServiceChannel(_binder, endpoint, _listener.ChannelDispatcher, _idleManager); 458_channel = new ServiceChannel(_binder, endpoint, _listener.ChannelDispatcher, _idleManager);
69 references to ServiceChannel
dotnet-svcutil-lib (69)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (1)
664ServiceChannel serviceChannel = ServiceChannelFactory.GetServiceChannel(channel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (15)
671internal static IAsyncResult BeginCall(ServiceChannel channel, ProxyOperationRuntime operation, object[] ins, AsyncCallback callback, object asyncState) 1658internal SendAsyncResult(ServiceChannel channel, ProxyOperationRuntime operation, 1910void Call(ServiceChannel channel, TimeSpan timeout); 1911IAsyncResult BeginCall(ServiceChannel channel, TimeSpan timeout, AsyncCallback callback, object state); 1912void EndCall(ServiceChannel channel, IAsyncResult result); 1940void ICallOnce.Call(ServiceChannel channel, TimeSpan timeout) 1946IAsyncResult ICallOnce.BeginCall(ServiceChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 1952void ICallOnce.EndCall(ServiceChannel channel, IAsyncResult result) 1974void ICallOnce.Call(ServiceChannel channel, TimeSpan timeout) 1979IAsyncResult ICallOnce.BeginCall(ServiceChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 1984void ICallOnce.EndCall(ServiceChannel channel, IAsyncResult result) 1993private readonly ServiceChannel _channel; 1999internal CallOnceManager(ServiceChannel channel, ICallOnce callOnce) 2333private ServiceChannel _channel; 2387internal void RegisterChannel(ServiceChannel channel, out bool didIdleAbort)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (6)
309public virtual ServiceChannel CreateServiceChannel(EndpointAddress address, Uri via) 312ServiceChannel serviceChannel = new ServiceChannel(this, binder); 343ServiceChannel serviceChannel = this.CreateServiceChannel(address, via); 365internal static object CreateProxy(Type interfaceType, Type proxiedType, MessageDirection direction, ServiceChannel serviceChannel) 370internal static object CreateProxy<TChannel>(MessageDirection direction, ServiceChannel serviceChannel) 380internal static ServiceChannel GetServiceChannel(object transparentProxy)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (8)
22private ServiceChannel _serviceChannel; 29internal static TChannel CreateProxy<TChannel>(MessageDirection direction, ServiceChannel serviceChannel) 117internal ServiceChannel GetServiceChannel() 159public static Task CreateTask(ServiceChannel channel, MethodCall methodCall, ProxyOperationRuntime operation) 168private static Task CreateGenericTask(ServiceChannel channel, ProxyOperationRuntime operation, object[] inputParameters) 195IAsyncResult ar = ServiceChannel.BeginCall(channel, operation, inputParameters, new AsyncCallback(endCallDelegate), OperationContext.Current); 209private static Task CreateTask(ServiceChannel channel, ProxyOperationRuntime operation, object[] inputParameters) 237IAsyncResult ar = ServiceChannel.BeginCall(channel, operation, inputParameters, new AsyncCallback(endCallDelegate), OperationContext.Current);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
522private ServiceChannel _channel; 831ServiceChannel IChannelBaseProxy.GetServiceChannel()
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ChannelHandler.cs (12)
14using SessionIdleManager = System.ServiceModel.Channels.ServiceChannel.SessionIdleManager; 39private ServiceChannel _channel; 54internal ChannelHandler(MessageVersion messageVersion, IChannelBinder binder, ServiceChannel channel) 124internal ServiceChannel Channel 247ServiceChannel channel = _requestInfo.Channel; 415private ServiceChannel GetDatagramChannel(Message message, out EndpointDispatcher endpoint, out bool addressMatched) 445private ServiceChannel GetSessionChannel(Message message, out EndpointDispatcher endpoint, out bool addressMatched) 476private void InitializeServiceChannel(ServiceChannel channel) 538private bool HandleError(Exception e, RequestContext request, ServiceChannel channel) 554private bool HandleErrorContinuation(Exception e, RequestContext request, ServiceChannel channel, ref ErrorHandlerFaultInfo faultInfo, bool replied) 1245public ServiceChannel Channel; 1296public ServiceChannel Channel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
383ServiceChannel serviceChannel = OperationContext.Current.InternalServiceChannel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\EndpointDispatcher.cs (2)
16private ServiceChannel _datagramChannel; 36internal ServiceChannel DatagramChannel
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (5)
122ServiceChannel clientChannel = ServiceChannelFactory.GetServiceChannel(rpc.Channel.Proxy); 144internal void DisplayInitializationUI(ServiceChannel channel) 149internal IAsyncResult BeginDisplayInitializationUI(ServiceChannel channel, AsyncCallback callback, object state) 241private ServiceChannel _channel; 248internal DisplayInitializationUIAsyncResult(ServiceChannel channel,
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
267private void AddMessageProperties(Message message, OperationContext context, ServiceChannel replyChannel)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InstanceContextProviderBase.cs (3)
41internal ServiceChannel GetServiceChannelFromProxy(IContextChannel channel) 43ServiceChannel serviceChannel = channel as ServiceChannel;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
10using SessionIdleManager = System.ServiceModel.Channels.ServiceChannel.SessionIdleManager;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (2)
21internal readonly ServiceChannel Channel; 66ServiceChannel channel, ChannelHandler channelHandler, bool cleanThread,
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\PerSessionInstanceContextProvider.cs (1)
27ServiceChannel serviceChannel = this.GetServiceChannelFromProxy(channel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyRpc.cs (2)
17internal readonly ServiceChannel Channel; 29internal ProxyRpc(ServiceChannel channel, ProxyOperationRuntime operation, string action, object[] inputs, TimeSpan timeout)
FrameworkFork\System.ServiceModel\System\ServiceModel\IChannelBaseProxy.cs (1)
14ServiceChannel GetServiceChannel();
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationContext.cs (6)
18private ServiceChannel _channel; 39ServiceChannel serviceChannel = channel as ServiceChannel; 71internal OperationContext(RequestContext requestContext, Message request, ServiceChannel channel) 155internal ServiceChannel InternalServiceChannel 320internal void ReInit(RequestContext requestContext, Message request, ServiceChannel channel)