namespace System.Web.ModelBinding { using System; using System.Collections.Generic; public class EmptyModelMetadataProvider : AssociatedMetadataProvider { protected override ModelMetadata CreateMetadata(IEnumerable attributes, Type containerType, Func modelAccessor, Type modelType, string propertyName) { return new ModelMetadata(this, containerType, modelAccessor, modelType, propertyName); } } }