public AtomOutOfLineContent(AtomContentType type, Uri src)
     : base()
 {
     _text = null;
     _type = type;
     _src = src;
 }
Example #2
0
 public AtomContent(string text, AtomContentType type)
     : base(text)
 {
     _type = type;
       _src = null;
 }