2 instantiations of ProxyOperationRuntime
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (2)
35_unhandled = new ProxyOperationRuntime(behavior.UnhandledClientOperation, this); 44ProxyOperationRuntime operationRuntime = new ProxyOperationRuntime(operation, this);
43 references to ProxyOperationRuntime
dotnet-svcutil-lib (43)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (16)
375private ProxyOperationRuntime UnhandledProxyOperation 546private void PrepareCall(ProxyOperationRuntime operation, bool oneway, ref ProxyRpc rpc) 671internal static IAsyncResult BeginCall(ServiceChannel channel, ProxyOperationRuntime operation, object[] ins, AsyncCallback callback, object asyncState) 678internal IAsyncResult BeginCall(string action, bool oneway, ProxyOperationRuntime operation, object[] ins, AsyncCallback callback, object asyncState) 683internal IAsyncResult BeginCall(string action, bool oneway, ProxyOperationRuntime operation, object[] ins, TimeSpan timeout, AsyncCallback callback, object asyncState) 720internal object Call(string action, bool oneway, ProxyOperationRuntime operation, object[] ins, object[] outs) 725internal object Call(string action, bool oneway, ProxyOperationRuntime operation, object[] ins, object[] outs, TimeSpan timeout) 909private void HandleReply(ProxyOperationRuntime operation, ref ProxyRpc rpc) 1080private void ThrowIfIdleAborted(ProxyOperationRuntime operation) 1090private void ThrowIfIsConnectionOpened(ProxyOperationRuntime operation) 1193ProxyOperationRuntime operation = UnhandledProxyOperation; 1204ProxyOperationRuntime operation = UnhandledProxyOperation; 1220ProxyOperationRuntime operation = UnhandledProxyOperation; 1231ProxyOperationRuntime operation = UnhandledProxyOperation; 1650private readonly ProxyOperationRuntime _operation; 1658internal SendAsyncResult(ServiceChannel channel, ProxyOperationRuntime operation,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (11)
77ProxyOperationRuntime operation = _proxyRuntime.GetOperation(method, methodCall.Args, out canCacheMessageData); 159public static Task CreateTask(ServiceChannel channel, MethodCall methodCall, ProxyOperationRuntime operation) 168private static Task CreateGenericTask(ServiceChannel channel, ProxyOperationRuntime operation, object[] inputParameters) 209private static Task CreateTask(ServiceChannel channel, ProxyOperationRuntime operation, object[] inputParameters) 309private object InvokeTaskService(MethodCall methodCall, ProxyOperationRuntime operation) 349private object InvokeBeginService(MethodCall methodCall, ProxyOperationRuntime operation) 358private object InvokeEndService(MethodCall methodCall, ProxyOperationRuntime operation) 368private object InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) 484private ProxyOperationRuntime _operation; 491public MethodData(MethodBase methodBase, MethodType methodType, ProxyOperationRuntime operation) 508public ProxyOperationRuntime Operation
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (4)
547ProxyOperationRuntime op = GetOperationByName(methodName); 559ProxyOperationRuntime op = GetOperationByName(methodName); 572private System.ServiceModel.Dispatcher.ProxyOperationRuntime GetOperationByName(string methodName) 574ProxyOperationRuntime op = _runtime.GetOperationByName(methodName);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (1)
314if ((reply != null) && (!ProxyOperationRuntime.IsValidAction(reply, this.ReplyAction)))
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (9)
20private Dictionary<string, ProxyOperationRuntime> _operations; 21private ProxyOperationRuntime _unhandled; 39_operations = new Dictionary<string, ProxyOperationRuntime>(); 44ProxyOperationRuntime operationRuntime = new ProxyOperationRuntime(operation, this); 71internal ProxyOperationRuntime UnhandledProxyOperation 182internal ProxyOperationRuntime GetOperation(MethodBase methodBase, object[] args, out bool canCacheResult) 204ProxyOperationRuntime operation; 230internal ProxyOperationRuntime GetOperationByName(string operationName) 232ProxyOperationRuntime operation = null;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyRpc.cs (2)
20internal readonly ProxyOperationRuntime Operation; 29internal ProxyRpc(ServiceChannel channel, ProxyOperationRuntime operation, string action, object[] inputs, TimeSpan timeout)