Exemple #1
0
 TaggedParser(TaggedParser <R> that, bool isBase)
 {
     this.isBase = isBase;
     reader      = that.reader;
     baseParser  = this;
     fieldParser = that;
 }
Exemple #2
0
 private TaggedParser(PayloadBondedFactory bondedFactory)
 {
     isBase             = false;
     this.bondedFactory = bondedFactory ?? NewBonded;
     baseParser         = new TaggedParser <R>(this, isBase: true);
     fieldParser        = this;
 }
Exemple #3
0
 TaggedParser(TaggedParser <R> that, bool isBase)
 {
     this.isBase   = isBase;
     bondedFactory = that.bondedFactory;
     reader        = that.reader;
     baseParser    = this;
     fieldParser   = that;
 }
Exemple #4
0
 public TaggedParser(Type type)
 {
     isBase      = false;
     baseParser  = new TaggedParser <R>(this, isBase: true);
     fieldParser = this;
 }
Exemple #5
0
 public TaggedParser(RuntimeSchema schema)
 {
     isBase      = false;
     baseParser  = new TaggedParser <R>(this, isBase: true);
     fieldParser = this;
 }