Пример #1
0
 public Source(Text title, string id, DateTime updated)
 {
     _title = title;
     _id = id;
     _updated = updated;
 }
Пример #2
0
 public Feed(Text title, string id, DateTime updated)
     : base(title, id, updated)
 {
 }
Пример #3
0
 public Source(Text title, Uri id, DateTime updated)
     : this(title, HttpUtility.UrlEncode(id.ToString()), updated)
 {
 }
Пример #4
0
 public Feed(Text title, Uri id, DateTime updated)
     : base(title, id, updated)
 {
 }