You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// if set to <c>true</c> use a cache for types that were resolved to resolve faster next time.
468
-
/// if set to <c>false</c> the cache of types resolution is not use for this instance of ExpressionEvaluator.
469
-
/// Default : false
470
-
/// the cache is the static Dictionary TypesResolutionCaching (so it is shared by all instances of ExpressionEvaluator that have CacheTypesResolutions enabled)
467
+
/// if set to <c>true</c> use a cache for types that were resolved to resolve faster next time.<para/>
468
+
/// if set to <c>false</c> the cache of types resolution is not use for this instance of ExpressionEvaluator.<para/>
469
+
/// Default : false<para/>
470
+
/// The cache is the static Dictionary TypesResolutionCaching (so it is shared by all instances of ExpressionEvaluator that have CacheTypesResolutions enabled)
471
471
/// </summary>
472
472
publicboolCacheTypesResolutions{get;set;}
473
473
@@ -492,8 +492,8 @@ public static void ClearAllCaches()
492
492
privateIList<Assembly>assemblies;
493
493
494
494
/// <summary>
495
-
/// All assemblies needed to resolves Types
496
-
/// by default all Assemblies loaded in the current AppDomain
495
+
/// All assemblies needed to resolves Types<para/>
496
+
/// By default all assemblies loaded in the current AppDomain
497
497
/// </summary>
498
498
publicvirtualIList<Assembly>Assemblies
499
499
{
@@ -502,7 +502,8 @@ public virtual IList<Assembly> Assemblies
/// If <c>true</c> allow to assign a value to a variable in the Variable disctionary with (=, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, ++ or --)
783
-
/// If <c>false</c> unactive this functionality
784
+
/// If <c>true</c> allow to assign a value to a variable in the Variable disctionary with (=, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, ++ or --)<para/>
785
+
/// If <c>false</c> unactive this functionality<para/>
/// If <c>true</c> allow to assign a indexed element like Collections, List, Arrays and Dictionaries with (=, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, ++ or --)
797
-
/// If <c>false</c> unactive this functionality
798
+
/// If <c>true</c> allow to assign a indexed element like Collections, List, Arrays and Dictionaries with (=, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, ++ or --)<para/>
799
+
/// If <c>false</c> unactive this functionality<para/>
/// If <c>true</c> On unsuccessful call to an extension method, all defined overloads of that method are detected to resolve whether method is defined and called with wrong arguments or method is not defined.
835
-
/// If <c>false</c> Unsucessful call to an extension method will always result in "Method {name} is not defined on type {type}"
837
+
/// If <c>true</c> On unsuccessful call to an extension method, all defined overloads of that method are detected to resolve whether method is defined and called with wrong arguments or method is not defined.<para/>
838
+
/// If <c>false</c> Unsucessful call to an extension method will always result in "Method {name} is not defined on type {type}"<para/>
/// The values of the variable use in the expressions
911
+
/// A Dictionary of variable name/value that can be use in expressions and scripts evaluate by the current instance of <see cref="ExpressionEvaluator"/><para/>
912
+
/// Warning : Make a copy of the given dictionary to manage casing.
909
913
/// </summary>
910
914
publicIDictionary<string,object>Variables
911
915
{
@@ -924,52 +928,52 @@ public IDictionary<string, object> Variables
924
928
}
925
929
926
930
/// <summary>
927
-
/// Is fired just before an expression is evaluate.
931
+
/// Is fired just before an expression is evaluate.<para/>
928
932
/// Allow to redefine the expression to evaluate or to force a result value.
0 commit comments