Adf.Base.Validation.MaxLengthAttribute.MaxLengthAttribute C# (CSharp) Method

MaxLengthAttribute() public method

Creates a new MaxLengthAttribute instance with the supplied length.
public MaxLengthAttribute ( int length ) : System
length int The supplied length.
return System
        public MaxLengthAttribute(int length)
        {
            this.length = length;
        }