PageRenderTime 49ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/src/NUnit/interfaces/Extensibility/AddinStatus.cs

#
C# | 36 lines | 12 code | 1 blank | 23 comment | 0 complexity | df00c9b28783801a2e336d8e2af7128a MD5 | raw file
Possible License(s): GPL-2.0
  1. // ****************************************************************
  2. // Copyright 2007, Charlie Poole
  3. // This is free software licensed under the NUnit license. You may
  4. // obtain a copy of the license at http://nunit.org
  5. // ****************************************************************
  6. using System;
  7. namespace NUnit.Core.Extensibility
  8. {
  9. /// <summary>
  10. /// The AddinStatus enum indicates the load status of an addin.
  11. /// </summary>
  12. public enum AddinStatus
  13. {
  14. /// <summary>
  15. /// Not known - default
  16. /// </summary>
  17. Unknown,
  18. /// <summary>
  19. /// The addin is enabled but not loaded
  20. /// </summary>
  21. Enabled,
  22. /// <summary>
  23. /// The addin is disabled
  24. /// </summary>
  25. Disabled,
  26. /// <summary>
  27. /// The addin was loaded successfully
  28. /// </summary>
  29. Loaded,
  30. /// <summary>
  31. /// An error was encountered loading the addin
  32. /// </summary>
  33. Error
  34. }
  35. }