1 write to Args
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\MethodCall.cs (1)
21
Args
= args;
11 references to Args
System.ServiceModel.Primitives (11)
System\ServiceModel\Channels\MethodCall.cs (3)
35
public object[] InArgs => _inArgs ??
Args
;
49
if (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)
77
ProxyOperationRuntime operation = _proxyRuntime.GetOperation(method, methodCall.
Args
, out canCacheMessageData);
399
object[] args = methodCall.
Args
;
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (6)
317
object[] args = methodCall.
Args
;
323
callback = args[methodCall.
Args
.Length - 2] as AsyncCallback;
324
asyncState = args[methodCall.
Args
.Length - 1];
331
result = methodCall.
Args
[methodCall.
Args
.Length - 1] as IAsyncResult;
356
object[] args = methodCall.
Args
;