// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNet.Mvc.ModelBinding.Validation { /// /// The context for client-side model validation. /// public class ClientModelValidationContext : ModelValidationContextBase { /// /// Create a new instance of . /// /// The for validation. /// The for validation. /// The to be used in validation. public ClientModelValidationContext( ActionContext actionContext, ModelMetadata metadata, IModelMetadataProvider metadataProvider) : base(actionContext, metadata, metadataProvider) { } } }