Add IsNull and HasValue methods to Dynamic* classes

**Breaking Change: DynamicNull.HasValue and DynamicNull.IsNull have been changed from properties to methods
Rename umbraco.MacroEngines.ExtensionMethods as umbraco.MacroEngines.PrivateExtensionMethods
Implement extension method invokes for DynamicNode
This commit is contained in:
agrath@gmail.com
2011-03-22 18:02:32 -13:00
parent a079136665
commit 93d65ced40
7 changed files with 149 additions and 11 deletions

View File

@@ -235,5 +235,13 @@ namespace umbraco.MacroEngines
this.Items.Remove(node);
}
}
public bool IsNull()
{
return false;
}
public bool HasValue()
{
return true;
}
}
}