9 references to Allocate
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (2)
149return EmptyArray<IServiceContractGenerationExtension>.Allocate(0); 176return EmptyArray<IOperationContractGenerationExtension>.Allocate(0);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
365outputs = EmptyArray<object>.Allocate(0);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (1)
78this.Correlation = EmptyArray<object>.Allocate(operation.Parent.CorrelationCount);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyRpc.cs (1)
35this.Correlation = EmptyArray<object>.Allocate(operation.Parent.CorrelationCount);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (2)
53return EmptyArray<object>.Allocate(_inputParameterCount); 88var outputs = EmptyArray<object>.Allocate(_outputParameterCount);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (2)
60return EmptyArray<object>.Allocate(_inputParameterCount); 147var outputs = EmptyArray<object>.Allocate(_outputParameterCount);