3 instantiations of MethodCall
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
134
MethodCall methodCall = new
MethodCall
(targetMethod, args);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
546
MethodCall methodCall = new
MethodCall
(inArgs);
558
MethodCall methodCall = new
MethodCall
(inArgs);
21 references to MethodCall
dotnet-svcutil-lib (21)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (10)
53
private MethodData GetMethodData(
MethodCall
methodCall)
134
MethodCall
methodCall = new MethodCall(targetMethod, args);
159
public static Task CreateTask(ServiceChannel channel,
MethodCall
methodCall, ProxyOperationRuntime operation)
309
private object InvokeTaskService(
MethodCall
methodCall, ProxyOperationRuntime operation)
315
private object InvokeChannel(
MethodCall
methodCall)
344
private object InvokeGetType(
MethodCall
methodCall)
349
private object InvokeBeginService(
MethodCall
methodCall, ProxyOperationRuntime operation)
358
private object InvokeEndService(
MethodCall
methodCall, ProxyOperationRuntime operation)
368
private object InvokeService(
MethodCall
methodCall, ProxyOperationRuntime operation)
377
private object ExecuteMessage(object target,
MethodCall
methodCall)
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
546
MethodCall
methodCall = new MethodCall(inArgs);
558
MethodCall
methodCall = new MethodCall(inArgs);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (9)
269
internal bool IsSyncCall(
MethodCall
methodCall)
281
internal bool IsBeginCall(
MethodCall
methodCall)
293
internal bool IsTaskCall(
MethodCall
methodCall)
305
internal object[] MapSyncInputs(
MethodCall
methodCall, out object[] outs)
320
internal object[] MapAsyncBeginInputs(
MethodCall
methodCall, out AsyncCallback callback, out object asyncState)
343
internal void MapAsyncEndInputs(
MethodCall
methodCall, out IAsyncResult result, out object[] outs)
349
internal object[] MapSyncOutputs(
MethodCall
methodCall, object[] outs, ref object ret)
354
internal object[] MapAsyncOutputs(
MethodCall
methodCall, object[] outs, ref object ret)
359
private object[] MapOutputs(ParameterInfo[] parameters,
MethodCall
methodCall, object[] outs, ref object ret)