Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ModelValidatorProvider.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 932a091f49d10c50c8cbbb7077b1f84f5c704c16 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace System.Web.Mvc
{
    public abstract class ModelValidatorProvider
    {
        public abstract IEnumerable<ModelValidator> GetValidators(ModelMetadata metadata, ControllerContext context);
    }
}