1 write to Args
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\MethodCall.cs (1)
21Args = args;
11 references to Args
System.ServiceModel.Primitives (11)
System\ServiceModel\Channels\MethodCall.cs (3)
35public object[] InArgs => _inArgs ?? Args; 49if (inCount == Args.Length) // All parameters are InArgs so do nothing and fallback to returning Args 60_inArgs[inPos] = Args[argPos];
System\ServiceModel\Channels\ServiceChannelProxy.cs (2)
77ProxyOperationRuntime operation = _proxyRuntime.GetOperation(method, methodCall.Args, out canCacheMessageData); 399object[] args = methodCall.Args;
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (6)
317object[] args = methodCall.Args; 323callback = args[methodCall.Args.Length - 2] as AsyncCallback; 324asyncState = args[methodCall.Args.Length - 1]; 331result = methodCall.Args[methodCall.Args.Length - 1] as IAsyncResult; 356object[] args = methodCall.Args;