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