/src/LinFu.AOP.Interfaces/IBootStrappedComponent.cs

http://github.com/philiplaureano/LinFu · C# · 13 lines · 7 code · 0 blank · 6 comment · 0 complexity · 67baf3b4713f79e337928eb6bc2b85aa MD5 · raw file

  1. namespace LinFu.AOP.Interfaces
  2. {
  3. /// <summary>
  4. /// Represents a type that will be automatically initialized once the LinFu.AOP assembly is loaded into memory.
  5. /// </summary>
  6. public interface IBootStrappedComponent
  7. {
  8. /// <summary>
  9. /// Initializes the bootstrapped component.
  10. /// </summary>
  11. void Initialize();
  12. }
  13. }