MachineSettingsSection.MaxTimeout 属性

定义

获取事务超时之前所允许的最大时间量。

public:
 property TimeSpan MaxTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.Configuration.ConfigurationProperty("maxTimeout", DefaultValue="00:10:00")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")]
public TimeSpan MaxTimeout { get; set; }
[<System.Configuration.ConfigurationProperty("maxTimeout", DefaultValue="00:10:00")>]
[<System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")>]
member this.MaxTimeout : TimeSpan with get, set
Public Property MaxTimeout As TimeSpan

属性值

TimeSpan

包含最长可允许时间的 TimeSpan 对象。 默认值为 00:10:00。

属性

例外

尝试将此属性设置为负值。

注解

只能在 machine.config 文件中设置此属性。 00:00:00 (或零) 的值被解释为无限大。

适用于