ProcessModelSection.ShutdownTimeout 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示允许的关闭辅助进程的时间。
public:
property TimeSpan ShutdownTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:00:05")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")]
public TimeSpan ShutdownTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:00:05")>]
[<System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")>]
member this.ShutdownTimeout : TimeSpan with get, set
Public Property ShutdownTimeout As TimeSpan
属性值
定义间隔的 TimeSpan。 默认值为 5 秒。
- 属性
示例
下面的代码示例说明如何使用 ShutdownTimeout 属性。
// Get the current ShutdownTimeout property value.
TimeSpan shutDownTimeout =
processModelSection.ShutdownTimeout;
// Set the ShutdownTimeout property to
// TimeSpan.Parse("00:00:30").
processModelSection.ShutdownTimeout =
TimeSpan.Parse("00:00:30");
' Get the current ShutdownTimeout property value.
Dim shutDownTimeout As TimeSpan = _
processModelSection.ShutdownTimeout
' Set the ShutdownTimeout property to
' TimeSpan.Parse("00:00:30").
processModelSection.ShutdownTimeout = _
TimeSpan.Parse("00:00:30")
注解
此属性指定工作进程正常关闭的分钟数。 超时到期后,ASP.NET 强制关闭工作进程。