3 instantiations of MethodCall
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
138MethodCall methodCall = new MethodCall(targetMethod, args);
System\ServiceModel\ClientBase.cs (2)
943MethodCall methodCall = new MethodCall(inArgs); 955MethodCall methodCall = new MethodCall(inArgs);
21 references to MethodCall
System.ServiceModel.Primitives (21)
System\ServiceModel\Channels\ServiceChannelProxy.cs (10)
53private MethodData GetMethodData(MethodCall methodCall) 138MethodCall methodCall = new MethodCall(targetMethod, args); 163public static Task CreateTask(ServiceChannel channel, MethodCall methodCall, ProxyOperationRuntime operation) 327private object InvokeTaskService(MethodCall methodCall, ProxyOperationRuntime operation) 333private object InvokeChannel(MethodCall methodCall) 362private object InvokeGetType(MethodCall methodCall) 367private object InvokeBeginService(MethodCall methodCall, ProxyOperationRuntime operation) 376private object InvokeEndService(MethodCall methodCall, ProxyOperationRuntime operation) 386private object InvokeService(MethodCall methodCall, ProxyOperationRuntime operation) 395private object ExecuteMessage(object target, MethodCall methodCall)
System\ServiceModel\ClientBase.cs (2)
943MethodCall methodCall = new MethodCall(inArgs); 955MethodCall methodCall = new MethodCall(inArgs);
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (9)
251internal bool IsSyncCall(MethodCall methodCall) 263internal bool IsBeginCall(MethodCall methodCall) 275internal bool IsTaskCall(MethodCall methodCall) 287internal object[] MapSyncInputs(MethodCall methodCall, out object[] outs) 305internal object[] MapAsyncBeginInputs(MethodCall methodCall, out AsyncCallback callback, out object asyncState) 328internal void MapAsyncEndInputs(MethodCall methodCall, out IAsyncResult result, out object[] outs) 334internal object[] MapSyncOutputs(MethodCall methodCall, object[] outs, ref object ret) 339internal object[] MapAsyncOutputs(MethodCall methodCall, object[] outs, ref object ret) 344private object[] MapOutputs(ParameterInfo[] parameters, MethodCall methodCall, object[] outs, ref object ret)