DataAnnotationsModelValidatorProvider.RegisterDefaultValidatableObjectAdapter Method

Definition

Registers an adapter for default object validation.

public:
 static void RegisterDefaultValidatableObjectAdapter(Type ^ adapterType);
public static void RegisterDefaultValidatableObjectAdapter (Type adapterType);
static member RegisterDefaultValidatableObjectAdapter : Type -> unit
Public Shared Sub RegisterDefaultValidatableObjectAdapter (adapterType As Type)

Parameters

adapterType
Type

The type of the adapter.

Exceptions

The type parameter is null.

The adapter type does not derive from ModelValidator.

-or-

The adapter type does not have a public constructor that accepts two parameters that are typed as ModelMetadata and ModelBindingExecutionContext.

Applies to