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\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\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;