다음을 통해 공유


ProcessModelSection.ResponseRestartDeadlockInterval 속성

정의

더 이상 사용되지 않습니다.

public:
 property TimeSpan ResponseRestartDeadlockInterval { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("responseRestartDeadlockInterval", DefaultValue="00:03:00")]
public TimeSpan ResponseRestartDeadlockInterval { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("responseRestartDeadlockInterval", DefaultValue="00:03:00")>]
member this.ResponseRestartDeadlockInterval : TimeSpan with get, set
Public Property ResponseRestartDeadlockInterval As TimeSpan

속성 값

TimeSpan

해당 사항 없음

특성

예제

다음 코드 예제에서는 ResponseRestartDeadlockInterval 속성에 액세스하는 방법을 보여 줍니다.


// Get the current ResponseRestartDeadlockInterval property
// value.
TimeSpan respRestartDeadlock =
    processModelSection.ResponseRestartDeadlockInterval;

// Set the ResponseRestartDeadlockInterval property to
// TimeSpan.Parse("04:00:00").
processModelSection.ResponseRestartDeadlockInterval = 
    TimeSpan.Parse("04:00:00");
' Get the current ResponseRestartDeadlockInterval property
' value.
   Dim respRestartDeadlock As TimeSpan = _
   processModelSection.ResponseRestartDeadlockInterval

' Set the ResponseRestartDeadlockInterval property to
' TimeSpan.Parse("04:00:00").
   processModelSection.ResponseRestartDeadlockInterval = _
   TimeSpan.Parse("04:00:00")

설명

이 속성은 ASP.NET에서 더 이상 사용 되지를 이전 버전과 호환성만 제공 됩니다. 구성 파일에 이미 있는 경우 구성 오류가 발생 하지 않습니다. 이제에 의해 제어 됩니다 교착 상태 조건이 발생 한 경우 모든 재활용 된 ResponseDeadlockInterval 속성입니다.

적용 대상