InjectionAttribute.cs 417 B

12345678910111213141516
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Reflection;
  5. namespace com.bbbirder.injection
  6. {
  7. public abstract class InjectionAttribute : DirectRetrieveAttribute
  8. {
  9. /// <summary>
  10. /// set this property to populate injections
  11. /// </summary>
  12. /// <value></value>
  13. public abstract IEnumerable<InjectionInfo> ProvideInjections();
  14. }
  15. }