Files
Umbraco-CMS/src/umbraco.MacroEngines/RazorDynamicNode/ExpressionParser.cs
Shannon Deminick 5fc3d8e248 Fixes threading issue with Dynamicexpression... would have caused some strange behavior in the past!
Fixes: U4-995 - most methods will now work in dynamic expressions
2012-10-08 00:09:44 +05:00

19 lines
611 B
C#

using System.Collections.Generic;
using System.Dynamic;
using System.Linq.Expressions;
using System.Reflection;
using umbraco.MacroEngines;
namespace System.Linq.Dynamic
{
[Obsolete("This class is no longer used, use Umbraco.Web.Dynamics.ExpressionParser<T> instead")]
internal class ExpressionParser : Umbraco.Web.Dynamics.ExpressionParser<DynamicNode>
{
public ExpressionParser(ParameterExpression[] parameters, string expression, object[] values, bool flagConvertDynamicNullToBooleanFalse)
: base(parameters, expression, values, flagConvertDynamicNullToBooleanFalse)
{
}
}
}