PageRenderTime 59ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/DotNetSlave.BusinessLogic/SyndicationFormat.cs

#
C# | 31 lines | 9 code | 2 blank | 20 comment | 0 complexity | b86bbc0478556c6da6687b3ad0a830ea MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. /****************************************************************************
  2. Modification History:
  3. *****************************************************************************
  4. Date Author Description
  5. *****************************************************************************
  6. 04/11/2007 brian.kuhn Created SyndicationFormat Enumeration
  7. 08/30/2007 brian.kuhn Moved SyndicationFormat enum to root of library
  8. ****************************************************************************/
  9. namespace BlogEngine.Core
  10. {
  11. /// <summary>
  12. /// Represents common types of syndication formats.
  13. /// </summary>
  14. public enum SyndicationFormat
  15. {
  16. /// <summary>
  17. /// No syndication format specified.
  18. /// </summary>
  19. None = 0,
  20. /// <summary>
  21. /// Indicates that a feed conforms to the Atom syndication format.
  22. /// </summary>
  23. Atom = 1,
  24. /// <summary>
  25. /// Indicates that a feed conforms to the RSS syndication format.
  26. /// </summary>
  27. Rss = 2
  28. }
  29. }