PageRenderTime 82ms CodeModel.GetById 28ms RepoModel.GetById 1ms app.codeStats 0ms

/QDFeedParser/Atom10Feed.cs

#
C# | 27 lines | 16 code | 4 blank | 7 comment | 0 complexity | ea885aaf623778205b59dbd6a79f573c MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Xml;
  4. using System.Text;
  5. namespace QDFeedParser
  6. {
  7. public class Atom10Feed : BaseSyndicationFeed
  8. {
  9. #region Constructors
  10. /// <summary>
  11. /// Default constructor for Atom10Feed
  12. /// </summary>
  13. public Atom10Feed():base(FeedType.Atom10){}
  14. /// <summary>
  15. /// Constuctor for Atom10Feed object
  16. /// </summary>
  17. /// <param name="feeduri">The Uri used to identify the feed</param>
  18. public Atom10Feed(string feeduri) : base(feeduri, FeedType.Atom10)
  19. {
  20. }
  21. #endregion
  22. }
  23. }