Have deprecated more of the dynamic class in the macroEngines project to proxy to the
classes in the Umbraco.Core project.
This commit is contained in:
@@ -17,7 +17,7 @@ namespace Umbraco.Core.Dynamics
|
||||
int classCount;
|
||||
ReaderWriterLock rwLock;
|
||||
|
||||
private ClassFactory()
|
||||
protected ClassFactory()
|
||||
{
|
||||
AssemblyName name = new AssemblyName("DynamicClasses");
|
||||
AssemblyBuilder assembly = AppDomain.CurrentDomain.DefineDynamicAssembly(name, AssemblyBuilderAccess.Run);
|
||||
|
||||
@@ -1006,7 +1006,7 @@ namespace Umbraco.Core.Dynamics
|
||||
|
||||
}
|
||||
}
|
||||
static object ReflectPropertyValue(object o, string name)
|
||||
public static object ReflectPropertyValue(object o, string name)
|
||||
{
|
||||
PropertyInfo propertyInfo = o.GetType().GetProperty(name);
|
||||
if (propertyInfo != null)
|
||||
|
||||
Reference in New Issue
Block a user