/BlogEngine/DotNetSlave.BusinessLogic/SyndicationFormat.cs
# · C# · 31 lines · 9 code · 2 blank · 20 comment · 0 complexity · b86bbc0478556c6da6687b3ad0a830ea MD5 · raw file
- /****************************************************************************
- Modification History:
- *****************************************************************************
- Date Author Description
- *****************************************************************************
- 04/11/2007 brian.kuhn Created SyndicationFormat Enumeration
- 08/30/2007 brian.kuhn Moved SyndicationFormat enum to root of library
- ****************************************************************************/
- namespace BlogEngine.Core
- {
- /// <summary>
- /// Represents common types of syndication formats.
- /// </summary>
- public enum SyndicationFormat
- {
- /// <summary>
- /// No syndication format specified.
- /// </summary>
- None = 0,
-
- /// <summary>
- /// Indicates that a feed conforms to the Atom syndication format.
- /// </summary>
- Atom = 1,
-
- /// <summary>
- /// Indicates that a feed conforms to the RSS syndication format.
- /// </summary>
- Rss = 2
- }
- }