Files
Umbraco-CMS/src/Umbraco.Core/Dynamics/DynamicQueryableGetMemberBinder.cs
Shannon Deminick 5213d6de5c renamed IContentStore to IPublishedContentStore. Migrating DynamicNode to Umbraco.Core and cleaning up it's supported codebase.
Starting writing a few unit tests for the new DynamicNode codebase. Will of course leave the original DynamicNode stuff in its
current place for backwards compatibility but will deprecate many of the classes which will call the new ones.
2012-08-17 04:27:47 +06:00

16 lines
469 B
C#

using System;
using System.Dynamic;
namespace Umbraco.Core.Dynamics
{
internal class DynamicQueryableGetMemberBinder : GetMemberBinder
{
public DynamicQueryableGetMemberBinder(string name, bool ignoreCase) : base(name, ignoreCase) { }
public override DynamicMetaObject FallbackGetMember(DynamicMetaObject target, DynamicMetaObject errorSuggestion)
{
throw new NotImplementedException();
}
}
}