ProcessModelSection.ResponseRestartDeadlockInterval Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
N'est plus utilisé.
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
Valeur de propriété
Non applicable.
- Attributs
Exemples
L'exemple de code suivant illustre l'accès à la propriété 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")
Remarques
Cette propriété n’est plus utilisée par ASP.NET et est fournie uniquement pour la compatibilité descendante. Elle n’entraîne pas d’erreur de configuration si elle est déjà présente dans un fichier de configuration. Tout recyclage en cas de condition d’interblocage est désormais contrôlé par la ResponseDeadlockInterval propriété.