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