namespace Umbraco.Core.DependencyInjection { /// /// Represents an injected collection builder. /// /// The type of the collection. /// The type of the items. public interface IInjectCollectionBuilder where TCollection : IInjectCollection { /// /// Gets a collection. /// /// A collection. /// The lifetime of the collection depends on how the builder was registered. TCollection GetCollection(); } }