EvaluateString() private method

private EvaluateString ( ActionFrame context, int key ) : string
context ActionFrame
key int
return string
示例#1
0
 public override string Evaluate(Processor processor, ActionFrame frame) {
     return processor.EvaluateString(frame, this.key);
 }
 public override string Evaluate(Processor processor, ActionFrame frame)
 {
     return(processor.EvaluateString(frame, this.key));
 }
示例#3
0
 public override bool Output(Processor processor, ActionFrame frame) {
     Debug.Assert(key != Compiler.InvalidQueryKey);
     return processor.TextEvent(processor.EvaluateString(frame, this.key));
 }
 public override bool Output(Processor processor, ActionFrame frame)
 {
     Debug.Assert(key != Compiler.InvalidQueryKey);
     return(processor.TextEvent(processor.EvaluateString(frame, this.key)));
 }