ProcessModelSection.ShutdownTimeout 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’heure autorisée pour que le processus de travail s’arrête.
public:
property TimeSpan ShutdownTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:00:05")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")]
public TimeSpan ShutdownTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:00:05")>]
[<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
Valeur de propriété
Définition TimeSpan de l’intervalle. La valeur par défaut est 5 secondes.
- Attributs
Exemples
L’exemple de code suivant montre comment utiliser la ShutdownTimeout propriété.
// Get the current ShutdownTimeout property value.
TimeSpan shutDownTimeout =
processModelSection.ShutdownTimeout;
// Set the ShutdownTimeout property to
// TimeSpan.Parse("00:00:30").
processModelSection.ShutdownTimeout =
TimeSpan.Parse("00:00:30");
' Get the current ShutdownTimeout property value.
Dim shutDownTimeout As TimeSpan = _
processModelSection.ShutdownTimeout
' Set the ShutdownTimeout property to
' TimeSpan.Parse("00:00:30").
processModelSection.ShutdownTimeout = _
TimeSpan.Parse("00:00:30")
Remarques
Cette propriété spécifie le nombre de minutes autorisées pour que le processus de travail s’arrête correctement. Lorsque le délai d’expiration expire, ASP.NET arrête le processus de travail de force.