public static DeferredSectionExpression DeferredSection(
     PathExpression path,
     IEnumerable<Expression> body,
     SectionEvaluationMode evalMode)
 {
     return new DeferredSectionExpression(path, body, evalMode);
 }
Beispiel #2
0
 public static DeferredSectionExpression DeferredSection(
     PathExpression path,
     IEnumerable <Expression> body,
     SectionEvaluationMode evalMode)
 {
     return(new DeferredSectionExpression(path, body, evalMode));
 }
 public DeferredSectionExpression(
     PathExpression path,
     IEnumerable<Expression> body,
     SectionEvaluationMode evalMode)
 {
     _path = path;
     _body = body;
     _evalMode = evalMode;
 }
 public DeferredSectionExpression(
     PathExpression path,
     IEnumerable <Expression> body,
     SectionEvaluationMode evalMode)
 {
     _path     = path;
     _body     = body;
     _evalMode = evalMode;
 }