ProcessModelSection.ResponseRestartDeadlockInterval Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Artık kullanılmıyor.
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
Özellik Değeri
Uygulanamaz.
- Öznitelikler
Örnekler
Aşağıdaki kod örneği özelliğine nasıl eriş yapılacağını ResponseRestartDeadlockInterval gösterir.
// 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")
Açıklamalar
Bu özellik artık ASP.NET tarafından kullanılmaz ve yalnızca geriye dönük uyumluluk için sağlanır. Zaten bir yapılandırma dosyasında varsa, yapılandırma hatasına neden olmaz. Kilitlenme durumu durumunda tüm geri dönüşümler artık özelliği tarafından ResponseDeadlockInterval denetlenmektedir.