다음을 통해 공유


HttpRuntimeSection.ShutdownTimeout 속성

정의

애플리케이션이 종료될 때까지 허용된 유휴 시간을 가져오거나 설정합니다.

public:
 property TimeSpan ShutdownTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsConverter))]
[System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:01:30")]
public TimeSpan ShutdownTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsConverter))>]
[<System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:01:30")>]
member this.ShutdownTimeout : TimeSpan with get, set
Public Property ShutdownTimeout As TimeSpan

속성 값

TimeSpan

애플리케이션이 종료될 때까지 허용된 유휴 시간을 나타내는 TimeSpan 값입니다.

특성

예제

다음 예제에서는 ShutdownTimeout 속성을 사용하는 방법을 보여 줍니다.

// Get the ShutdownTimeout property value.
Response.Write("ShutdownTimeout: " +
  configSection.ShutdownTimeout.ToString() + "<br>");

// Set the ShutdownTimeout property value to 2 minutes.
configSection.ShutdownTimeout = TimeSpan.FromMinutes(2);
' Get the ShutdownTimeout property value.
Response.Write("ShutdownTimeout: " & _
  configSection.ShutdownTimeout.ToString() & "<br>")

' Set the ShutdownTimeout property value to 2 minutes.
configSection.ShutdownTimeout = TimeSpan.FromMinutes(2)

설명

ShutdownTimeout 속성 애플리케이션은 정상적으로 종료 하기 전에 시간을 나타냅니다. 기본값은 90 초입니다.

적용 대상