Exemplo n.º 1
0
 /// <summary>
 /// This constructor raises error if any variable referenced in an xpath expression is not found in the
 /// dictionary.
 /// </summary>
 /// <param name="valueCallback">Dictionary containing the name of the variable and its value</param>
 public XPathEvaluator(Func<string, object> valueCallback)
 {
     _ctx = new ParseDataContext {ValueCallBack = valueCallback};
 }
Exemplo n.º 2
0
 /// <summary>
 /// This constructor raises error if any variable referenced in an xpath expression is not found in the
 /// dictionary.
 /// </summary>
 /// <param name="valueCallback">Dictionary containing the name of the variable and its value</param>
 public XPathEvaluator(Func <string, object> valueCallback)
 {
     _ctx = new ParseDataContext {
         ValueCallBack = valueCallback
     };
 }
Exemplo n.º 3
0
 public XPathEvaluator()
 {
     _ctx = new ParseDataContext();
 }
Exemplo n.º 4
0
 public XPathEvaluator()
 {
     _ctx = new ParseDataContext();
 }