Op Englesch liesen Editéieren

Deelen iwwer


IntegerValidatorAttribute.MinValue Property

Definition

Gets or sets the minimum value allowed for the property.

C#
public int MinValue { get; set; }

Property Value

An integer that indicates the allowed minimum value.

Exceptions

The selected value is greater than MaxValue.

Examples

The following example shows how to use the MinValue property.

C#
[ConfigurationProperty("maxAttempts", DefaultValue = 101,
    IsRequired = true)]
[IntegerValidator(MinValue = 1, MaxValue = 100,
    ExcludeRange = true)]
public int MaxAttempts
{
    get
    {
        return (int)this["maxAttempts"];
    }
    set
    {
        this["maxAttempts"] = value;
    }
}

Remarks

The MinValue property value is included in the allowed range.

Applies to

Produkt Versiounen
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10