15 references to EmptyArray
System.ServiceModel.Primitives (15)
System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (1)
34ParameterInspectors = EmptyArray<IParameterInspector>.ToArray(operation.ParameterInspectors);
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
354outputs = EmptyArray<object>.Allocate(0);
System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
21_handlers = EmptyArray<IErrorHandler>.ToArray(channelDispatcher.ErrorHandlers);
System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (3)
24_channelInitializers = EmptyArray<IChannelInitializer>.ToArray(behavior.ChannelInitializers); 25_interactiveChannelInitializers = EmptyArray<IInteractiveChannelInitializer>.ToArray(behavior.InteractiveChannelInitializers); 26_messageInspectors = EmptyArray<IClientMessageInspector>.ToArray(behavior.MessageInspectors);
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
48_messageInspectors = EmptyArray<IDispatchMessageInspector>.ToArray(dispatch.MessageInspectors);
System\ServiceModel\Dispatcher\MessageRpc.cs (1)
74Correlation = EmptyArray<object>.Allocate(operation.Parent.CorrelationCount);
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (1)
46_parameterInspectors = EmptyArray<IParameterInspector>.ToArray(operation.ParameterInspectors);
System\ServiceModel\Dispatcher\ProxyRpc.cs (1)
36Correlation = EmptyArray<object>.Allocate(operation.Parent.CorrelationCount);
System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (2)
45return EmptyArray<object>.Allocate(_inputParameterCount); 87var outputs = EmptyArray<object>.Allocate(_outputParameterCount);
System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (2)
55return EmptyArray<object>.Allocate(_inputParameterCount); 149var outputs = EmptyArray<object>.Allocate(_outputParameterCount);
System\ServiceModel\EmptyArray.cs (1)
42return EmptyArray<T>.ToArray((IList<T>)collection);