/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
- namespace LinFu.AOP.Interfaces
- {
- /// <summary>
- /// Represents a type that will be automatically initialized once the LinFu.AOP assembly is loaded into memory.
- /// </summary>
- public interface IBootStrappedComponent
- {
- /// <summary>
- /// Initializes the bootstrapped component.
- /// </summary>
- void Initialize();
- }
- }