I see that you can Parse with an input type (for example, here I am passing "test")...
var exp = language.Parse<string, bool>("is_active(A1.E2) AND is_active(A1.E2) OR is_active(A1.E1, PT1H) AND was_active(A1.E1, PT1H)");
var func = exp.Compile();
Console.WriteLine(func("test"));
Is there any way to actually get to that value though? Ideally, I would want access to it for the custom functions.
I see that you can Parse with an input type (for example, here I am passing "test")...
Is there any way to actually get to that value though? Ideally, I would want access to it for the custom functions.