Base:
method
ConvertFrom
System.ComponentModel.TypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext, System.Globalization.CultureInfo, System.Object)
1 override of ConvertFrom
System.Configuration.ConfigurationManager (1)
System\Configuration\TimeSpanSecondsOrInfiniteConverter.cs (1)
18
public override object
ConvertFrom
(ITypeDescriptorContext ctx, CultureInfo ci, object data)
1 reference to ConvertFrom
System.Configuration.ConfigurationManager (1)
System\Configuration\TimeSpanSecondsOrInfiniteConverter.cs (1)
20
return (string)data == "Infinite" ? TimeSpan.MaxValue : base.
ConvertFrom
(ctx, ci, data);