Ejemplo n.º 1
0
 /// <summary>standard empty constructor</summary>
 public AtomFeedParser()
     : base()
 {
     Tracing.TraceCall("constructing AtomFeedParser");
     this.nameTable = new AtomParserNameTable();
     this.nameTable.InitAtomParserNameTable();
 }
Ejemplo n.º 2
0
 /// <summary>standard constructor</summary>
 public AtomFeedParser(IVersionAware v)
     : base()
 {
     Tracing.TraceCall("constructing AtomFeedParser");
     this.nameTable = new AtomParserNameTable();
     this.nameTable.InitAtomParserNameTable();
     this.versionInfo = new VersionInformation(v);
 }