You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/DependencyInjection/Contracts/IContainerFactory.cs

28 lines
636 B

using System;
using System.Collections.Generic;
namespace ZeroLevel.DependencyInjection
{
public interface IContainerFactory : IDisposable
{
#region Properties
IContainer this[string containerName] { get; }
IEnumerable<string> ContainerNames { get; }
IEnumerable<IContainer> Containers { get; }
#endregion Properties
#region Methods
IContainer CreateContainer(string containerName);
IContainer GetContainer(string containerName);
bool Contains(string containerName);
bool Remove(string containerName);
#endregion Methods
}
}

Powered by TurnKey Linux.