Files
linux-packaging-mono/external/aspnetwebstack/src/System.Web.WebPages/Validation/IValidator.cs

14 lines
408 B
C#
Raw Normal View History

// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
namespace System.Web.WebPages
{
public interface IValidator
{
ModelClientValidationRule ClientValidationRule { get; }
ValidationResult Validate(ValidationContext validationContext);
}
}