Mercurial > pub > bltoolkit
view Source/Validation/MaxLengthAttribute.cs @ 8:a34cfdde80d6
removed strong signing
added FrameworkPathOverride for linux builds
author | cin |
---|---|
date | Wed, 29 Nov 2017 12:43:52 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; namespace BLToolkit.Validation { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] public class MaxLengthAttribute : ValidatorBaseAttribute { public MaxLengthAttribute(int maxLength) { _value = maxLength; } public MaxLengthAttribute(int maxLength, string errorMessage) : this(maxLength) { ErrorMessage = errorMessage; } private readonly int _value; public int Value { get { return _value; } } public override bool IsValid(ValidationContext context) { return context.IsNull(context) || context.Value.ToString().Length <= _value; } public override string ErrorMessage { get { return base.ErrorMessage ?? "'{0}' maximum length is {1}."; } set { base.ErrorMessage = value; } } public override string GetErrorMessage(ValidationContext context) { return string.Format(ErrorMessage, GetPropertyFriendlyName(context), Value); } } }