TimeSpanValidatorAttribute.MaxValueString 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 maximum TimeSpan value.
public:
 property System::String ^ MaxValueString { System::String ^ get(); void set(System::String ^ value); };public string MaxValueString { get; set; }member this.MaxValueString : string with get, setPublic Property MaxValueString As StringProperty Value
The allowed maximum TimeSpan value.
Exceptions
The selected value represents less than MinValue.
Examples
The following example shows how to use the MaxValueString 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 maximum value as set by the user.