a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
532 B
C#
18 lines
532 B
C#
namespace System.Web.Mvc {
|
|
public static class ModelValidatorProviders {
|
|
|
|
private static readonly ModelValidatorProviderCollection _providers = new ModelValidatorProviderCollection() {
|
|
new DataAnnotationsModelValidatorProvider(),
|
|
new DataErrorInfoModelValidatorProvider(),
|
|
new ClientDataTypeModelValidatorProvider()
|
|
};
|
|
|
|
public static ModelValidatorProviderCollection Providers {
|
|
get {
|
|
return _providers;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|