TimeSpanValidatorAttribute.MinValueString Property      
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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, setPublic Property MinValueString As StringProperty 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.