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