/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

  1. using System;
  2. namespace LinFu.IoC.Interfaces
  3. {
  4. /// <summary>
  5. /// Represents a class that keeps track of all the disposable objects
  6. /// created within a service container and disposes them when
  7. /// the scope itself has been disposed.
  8. /// </summary>
  9. public interface IScope : IDisposable
  10. {
  11. }
  12. }