AspNetWebApi.DependencyResolution.Unity.UnityDependencyScope.GetServices C# (CSharp) Метод

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

public GetServices ( Type serviceType ) : IEnumerable
serviceType System.Type
Результат IEnumerable
        public IEnumerable<object> GetServices(Type serviceType)
        {
            return _container.IsRegistered(serviceType) ?
                _container.ResolveAll(serviceType) :
                new object[0];
        }
    }