ProcessModelSection.ResponseDeadlockInterval 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.
Obtient ou définit une valeur indiquant l'intervalle de temps pendant lequel le processus de traitement peut apporter une réponse.
public:
property TimeSpan ResponseDeadlockInterval { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("responseDeadlockInterval", DefaultValue="00:03:00")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")]
public TimeSpan ResponseDeadlockInterval { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("responseDeadlockInterval", DefaultValue="00:03:00")>]
[<System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")>]
member this.ResponseDeadlockInterval : TimeSpan with get, set
Public Property ResponseDeadlockInterval As TimeSpan
Valeur de propriété
TimeSpan définissant l'intervalle. La valeur par défaut est 3 minutes.
- Attributs
Exemples
L'exemple de code suivant montre comment utiliser la propriété ResponseDeadlockInterval.
// Get the current ResponseDeadlockInterval property value.
TimeSpan respDeadlock =
processModelSection.ResponseDeadlockInterval;
// Set the ResponseDeadlockInterval property to
// TimeSpan.Parse("00:05:00").
processModelSection.ResponseDeadlockInterval =
TimeSpan.Parse("00:05:00");
' Get the current ResponseDeadlockInterval property value.
Dim respDeadlock As TimeSpan = _
processModelSection.ResponseDeadlockInterval
' Set the ResponseDeadlockInterval property to
' TimeSpan.Parse("00:05:00").
processModelSection.ResponseDeadlockInterval = _
TimeSpan.Parse("00:05:00")
Remarques
Le processus est redémarré s’il existe des demandes en file d’attente et s’il n’y a pas eu de réponse pendant l’intervalle de temps défini par ResponseDeadlockInterval.