You've already forked linux-packaging-mono
14 lines
408 B
C#
14 lines
408 B
C#
|
|
// 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);
|
|||
|
|
}
|
|||
|
|
}
|