Op Englesch liesen Editéieren

Deelen iwwer


IntegerValidatorAttribute.ExcludeRange Property

Definition

Gets or sets a value that indicates whether to include or exclude the integers in the range defined by the MinValue and MaxValue property values.

C#
public bool ExcludeRange { get; set; }

Property Value

true if the value must be excluded; otherwise, false. The default is false.

Examples

The following example shows how to use the ExcludeRange 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 range is inclusive of the MinValue and MaxValue property values. When the ExcludeRange property value is true, the allowed values are outside the 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