コード例 #1
0
ファイル: Rss20.cs プロジェクト: onurh/AF452
 public Rss20(string title, string link, string description)
 {
     Channel = new Rss20Channel()
     {
         Link        = link,
         Title       = title,
         Description = description,
         Items       = new List <Rss20Item>()
     };
 }
コード例 #2
0
ファイル: Rss20.cs プロジェクト: onurh/AF452
 public Rss20()
 {
     Channel = new Rss20Channel();
 }