/src/LinFu.IoC/Interfaces/IScope.cs
http://github.com/philiplaureano/LinFu · C# · 13 lines · 7 code · 1 blank · 5 comment · 0 complexity · c554f0257073bec4a2944add79e3ff3a MD5 · raw file
- using System;
- namespace LinFu.IoC.Interfaces
- {
- /// <summary>
- /// Represents a class that keeps track of all the disposable objects
- /// created within a service container and disposes them when
- /// the scope itself has been disposed.
- /// </summary>
- public interface IScope : IDisposable
- {
- }
- }