Caliburn.Micro.Bootstrapper.GetAllInstances C# (CSharp) Метод

GetAllInstances() защищенный Метод

Override this to provide an IoC specific impelentation
protected GetAllInstances ( Type service ) : IEnumerable
service System.Type The service to locate.
Результат IEnumerable
        protected virtual IEnumerable<object> GetAllInstances(Type service)
        {
            return new[] { Activator.CreateInstance(service) };
        }