Validation
String, integer or long type settings can have custom regular expression that will be used to validate the setting. If a value is entered that does not match the regex then a custom message will be shown to the person configuring the setting and saving will not be allowed.
Usage
[Setting("This is a string", "Horse")]
[Validation("[0-9a-zA-Z]{5,}", "Must have 5 or more characters")]
public string AStringSetting { get; set; } = null!;
It is also possible to use some built in regular expressions for common validation checks. For example:
[Setting("This is a string", "Horse")]
[Validation(ValidationType.NotEmpty)]
public string AStringSetting { get; set; } = null!;
Class-level Validation
You can also apply validation rules at the class level, which will automatically apply to properties of specified types, unless they already have their own validation attributes. This is useful when you want to enforce consistent validation rules across multiple properties of the same type.
You can exclude properties from validation using [Validation(ValidationType.None)]
.
// Apply validation to all string properties that don't have their own validation attribute
[Validation(@"[^\s]+", "Value cannot contain spaces", typeof(string))]
// Apply validation to all int properties that don't have their own validation attribute
[Validation(@"[1-9][0-9]*", "Must be a positive number", typeof(int))]
public class ApplicationSettings
{
[Setting("Username")]
// Will use class-level validation for strings: no spaces allowed
public string Username { get; set; } = null!;
[Setting("Password")]
// Override class-level validation with property-specific validation
[Validation(@"[a-zA-Z0-9]{8,}", "Password must be at least 8 alphanumeric characters")]
public string Password { get; set; } = null!;
[Setting("Age")]
// Will use class-level validation for integers: must be positive
public int Age { get; set; }
}
Appearance
Overriding via Environment Variable
The validation value can be overridden using an environment variable. It should be in the format FIG_SettingName_VALIDATIONREGEX
and FIG_SettingName_VALIDATIONEXPLANATION
Use a value of 'null' to clear the current value.