IntegerValidatorAttribute.ExcludeRange Propiedad

Definición

Obtiene o establece un valor que indica si se deben incluir o excluir los enteros comprendidos en el intervalo definido por los valores de propiedades MinValue y MaxValue.

public:
 property bool ExcludeRange { bool get(); void set(bool value); };
public bool ExcludeRange { get; set; }
member this.ExcludeRange : bool with get, set
Public Property ExcludeRange As Boolean

Valor de propiedad

true si se debe excluir el valor; en caso contrario, false. De manera predeterminada, es false.

Ejemplos

En el ejemplo siguiente se muestra cómo usar la propiedad ExcludeRange.

[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;
    }
}
<ConfigurationProperty("maxAttempts", _
DefaultValue:=101, _
IsRequired:=True), _
IntegerValidator(MinValue:=1, _
MaxValue:=100, _
ExcludeRange:=True)> _
Public Property MaxAttempts() As Integer
    Get
        Return Fix(Me("maxAttempts"))
    End Get
    Set(ByVal value As Integer)
        Me("maxAttempts") = value
    End Set
End Property

Comentarios

El intervalo incluye los valores de propiedad MinValue y MaxValue . Cuando el valor de la ExcludeRange propiedad es true, los valores permitidos están fuera del intervalo.

Se aplica a