AspNetWebApi.DependencyResolution.Windsor.WindsorDependencyResolver.GetServices C# (CSharp) Метод

GetServices() публичный Метод

public GetServices ( Type serviceType ) : IEnumerable
serviceType System.Type
Результат IEnumerable
        public IEnumerable<object> GetServices(Type serviceType)
        {
            if (!_container.Kernel.HasComponent(serviceType))
                return new object[0];

            return _container.ResolveAll(serviceType).Cast<object>();
        }
    }