HostingEnvironmentSection.ShutdownTimeout 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
애플리케이션을 정상적으로 종료하는 시간(초)을 가져오거나 설정합니다.
public:
property TimeSpan ShutdownTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsConverter))]
[System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:00:30")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")]
public TimeSpan ShutdownTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsConverter))>]
[<System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:00:30")>]
[<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입니다. 기본값은 30초입니다.
- 특성
예제
다음 코드 예제에서는 ShutdownTimeout 속성을 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 HostingEnvironmentSection 클래스입니다.
// Display ShutdownTimeout property
Console.WriteLine("Shutdown Timeout: {0}", configSection.ShutdownTimeout);
' Display the ShutdownTimeout property
Console.WriteLine("Shutdown Timeout: {0}", configSection.ShutdownTimeout)
설명
기본값은 ShutdownTimeout 속성은 30 초입니다. 이 설정은 컴퓨터 또는 애플리케이션 수준에서 설정할 수 있습니다. 이 설정은 다른 구성 수준에서 정의 하는 경우 무시 됩니다. 디버거는 애플리케이션에 연결 되 면 애플리케이션 없습니다 종료 됩니다.