16 references to EmptyArray
dotnet-svcutil-lib (16)
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\DispatchOperationRuntime.cs (1)
51_inspectors = EmptyArray<IParameterInspector>.ToArray(operation.ParameterInspectors);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
365outputs = EmptyArray<object>.Allocate(0);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
20_handlers = EmptyArray<IErrorHandler>.ToArray(channelDispatcher.ErrorHandlers);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (3)
27_channelInitializers = EmptyArray<IChannelInitializer>.ToArray(behavior.ChannelInitializers); 28_interactiveChannelInitializers = EmptyArray<IInteractiveChannelInitializer>.ToArray(behavior.InteractiveChannelInitializers); 29_messageInspectors = EmptyArray<IClientMessageInspector>.ToArray(behavior.MessageInspectors);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (1)
78this.Correlation = EmptyArray<object>.Allocate(operation.Parent.CorrelationCount);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (1)
50_parameterInspectors = EmptyArray<IParameterInspector>.ToArray(operation.ParameterInspectors);
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);
FrameworkFork\System.ServiceModel\System\ServiceModel\EmptyArray.cs (1)
37return EmptyArray<T>.ToArray((IList<T>)collection);