using System; using System.Collections.Generic; namespace Microsoft.AspNet.Mvc.ModelBinding { public interface IModelMetadataProvider { IEnumerable GetMetadataForProperties(object container, Type containerType); ModelMetadata GetMetadataForProperty(Func modelAccessor, Type containerType, string propertyName); ModelMetadata GetMetadataForType(Func modelAccessor, Type modelType); } }