Files
Umbraco-CMS/src/umbraco.MacroEngines/RazorDynamicNode/ExtensionMethodFinder.cs
2012-08-17 06:22:51 +06:00

23 lines
687 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.Web.Compilation;
using System.Runtime.CompilerServices;
using System.Collections;
using System.Linq.Expressions;
namespace umbraco.MacroEngines
{
[Obsolete("This class has been superceded by Umbraco.Core.Dynamics.ExtensionMethodFinder")]
public static class ExtensionMethodFinder
{
public static MethodInfo FindExtensionMethod(Type thisType, object[] args, string name, bool argsContainsThis)
{
return Umbraco.Core.Dynamics.ExtensionMethodFinder.FindExtensionMethod(thisType, args, name, argsContainsThis);
}
}
}