fCraft.StringKeyAttribute.StringKeyAttribute C# (CSharp) Method

StringKeyAttribute() public method

public StringKeyAttribute ( ConfigSection section, object defaultValue, string description ) : System
section ConfigSection
defaultValue object
description string
return System
        public StringKeyAttribute( ConfigSection section, object defaultValue, string description )
            : base(section, typeof( string ), defaultValue, description)
        {
            MinLength = NoLengthRestriction;
            MaxLength = NoLengthRestriction;
            Regex = null;
        }