Exemplo n.º 1
0
 public Source(Text title, string id, DateTime updated)
 {
     _title = title;
     _id = id;
     _updated = updated;
 }
Exemplo n.º 2
0
 public Feed(Text title, string id, DateTime updated)
     : base(title, id, updated)
 {
 }
Exemplo n.º 3
0
 public Source(Text title, Uri id, DateTime updated)
     : this(title, HttpUtility.UrlEncode(id.ToString()), updated)
 {
 }
Exemplo n.º 4
0
 public Feed(Text title, Uri id, DateTime updated)
     : base(title, id, updated)
 {
 }