Compartir a través de


IntegerValidatorAttribute.MinValue Propiedad

Definición

Obtiene o establece el valor mínimo permitido para la propiedad.

public:
 property int MinValue { int get(); void set(int value); };
public int MinValue { get; set; }
member this.MinValue : int with get, set
Public Property MinValue As Integer

Valor de propiedad

Entero que indica el valor mínimo permitido.

Excepciones

El valor seleccionado es mayor que MaxValue.

Ejemplos

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

[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 MinValue valor de la propiedad se incluye en el intervalo permitido.

Se aplica a