9 references to ToArray
System.ServiceModel (9)
System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (2)
68this.callContextInitializers = EmptyArray<ICallContextInitializer>.ToArray(operation.CallContextInitializers); 69this.inspectors = EmptyArray<IParameterInspector>.ToArray(operation.ParameterInspectors);
System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (3)
34this.channelInitializers = EmptyArray<IChannelInitializer>.ToArray(behavior.ChannelInitializers); 35this.interactiveChannelInitializers = EmptyArray<IInteractiveChannelInitializer>.ToArray(behavior.InteractiveChannelInitializers); 36this.messageInspectors = EmptyArray<IClientMessageInspector>.ToArray(behavior.MessageInspectors);
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (2)
82this.inputSessionShutdownHandlers = EmptyArray<IInputSessionShutdown>.ToArray(dispatch.InputSessionShutdownHandlers); 86this.messageInspectors = EmptyArray<IDispatchMessageInspector>.ToArray(dispatch.MessageInspectors);
System\ServiceModel\Dispatcher\InstanceBehavior.cs (1)
36this.initializers = EmptyArray<IInstanceContextInitializer>.ToArray(dispatch.InstanceContextInitializers);
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (1)
61this.parameterInspectors = EmptyArray<IParameterInspector>.ToArray(operation.ParameterInspectors);