Ejemplo n.º 1
0
 public RTTemplateContext(string srcText, IRTMatch data, IRTMetadataFactory factory, int totalMatchCount)
     : base(factory)
 {
     this._srcText = srcText;
     this._matchInput = data;
     this._totalMatchCount = totalMatchCount;
 }
Ejemplo n.º 2
0
 public RTExecutionContext(IRTMetadataFactory factory)
 {
     MetadataFactory = factory;
 }
Ejemplo n.º 3
0
 public RTParsingContext(IRTMetadataFactory metaFactory)
 {
     this.MetadataFactory = metaFactory;
 }
Ejemplo n.º 4
0
 public RTPostContext(string srcText, IRTEntry[] mergeInput, IRTMetadataFactory factory)
     : base(factory)
 {
     this._srcText = srcText;
     this._mergeInput = mergeInput;
 }