PageRenderTime 36ms CodeModel.GetById 10ms RepoModel.GetById 1ms app.codeStats 0ms

/V4/PrismLibrary/Desktop/Prism/Logging/Priority.cs

#
C# | 45 lines | 10 code | 4 blank | 31 comment | 0 complexity | 152f0c83006ec78a4cd015af99f9614d MD5 | raw file
  1. //===================================================================================
  2. // Microsoft patterns & practices
  3. // Composite Application Guidance for Windows Presentation Foundation and Silverlight
  4. //===================================================================================
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
  7. // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
  8. // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  9. // FITNESS FOR A PARTICULAR PURPOSE.
  10. //===================================================================================
  11. // The example companies, organizations, products, domain names,
  12. // e-mail addresses, logos, people, places, and events depicted
  13. // herein are fictitious. No association with any real company,
  14. // organization, product, domain name, email address, logo, person,
  15. // places, or events is intended or should be inferred.
  16. //===================================================================================
  17. namespace Microsoft.Practices.Prism.Logging
  18. {
  19. /// <summary>
  20. /// Defines values for the priorities used by <see cref="ILoggerFacade"/>.
  21. /// </summary>
  22. public enum Priority
  23. {
  24. /// <summary>
  25. /// No priority specified.
  26. /// </summary>
  27. None = 0,
  28. /// <summary>
  29. /// High priority entry.
  30. /// </summary>
  31. High = 1,
  32. /// <summary>
  33. /// Medium priority entry.
  34. /// </summary>
  35. Medium,
  36. /// <summary>
  37. /// Low priority entry.
  38. /// </summary>
  39. Low
  40. }
  41. }