7 references to Allocate
System.ServiceModel (7)
System\ServiceModel\Dispatcher\AsyncMethodInvoker.cs (2)
54return EmptyArray.Allocate(this.InputParameterCount); 213outputs = EmptyArray.Allocate(this.OutputParameterCount);
System\ServiceModel\Dispatcher\MessageRpc.cs (1)
94this.Correlation = EmptyArray.Allocate(operation.Parent.CorrelationCount);
System\ServiceModel\Dispatcher\ProxyRpc.cs (1)
36this.Correlation = EmptyArray.Allocate(operation.Parent.CorrelationCount);
System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (2)
77return EmptyArray.Allocate(this.inputParameterCount); 94outputs = EmptyArray.Allocate(this.outputParameterCount);
System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (1)
195object[] outputs = EmptyArray.Allocate(this.outputParameterCount);