TimeSpanValidatorAttribute.MinValueString Property

Definition

Gets or sets the relative minimum TimeSpan value.

public:
 property System::String ^ MinValueString { System::String ^ get(); void set(System::String ^ value); };
public string MinValueString { get; set; }
member this.MinValueString : string with get, set
Public Property MinValueString As String

Property Value

The minimum allowed TimeSpan value.

Exceptions

The selected value represents more than MaxValue.

Examples

The following example shows how to use the MinValueString property.

[ConfigurationProperty("maxIdleTime",
    DefaultValue = "0:10:0",
    IsRequired = false)]
[TimeSpanValidator(MinValueString = "0:0:30",
    MaxValueString = "5:00:0",
    ExcludeRange = false)]
public TimeSpan MaxIdleTime
{
    get
    {
        return (TimeSpan)this["maxIdleTime"];
    }
    set
    {
        this["maxIdleTime"] = value;
    }
}
<ConfigurationProperty("maxIdleTime", _
DefaultValue:="0:10:0", _
IsRequired:=False), _
TimeSpanValidator(MinValueString:="0:0:30", _
MaxValueString:="5:00:0", _
ExcludeRange:=False)> _
Public Property MaxIdleTime() As TimeSpan
    Get
        Return CType(Me("maxIdleTime"), TimeSpan)
    End Get
    Set(ByVal value As TimeSpan)
        Me("maxIdleTime") = value
    End Set
End Property

Remarks

This is the relative minimum value as set by the user.

Applies to