ProcessModelSection.ShutdownTimeout Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define um valor que indica o tempo permitido para o processo de trabalho desligar.
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
Valor da propriedade
A TimeSpan definição do intervalo. O padrão é 5 segundos.
- Atributos
Exemplos
O exemplo de código a seguir mostra como usar a ShutdownTimeout propriedade.
// 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")
Comentários
Essa propriedade especifica o número de minutos permitidos para que o processo de trabalho seja desligado normalmente. Quando o tempo limite expirar, ASP.NET encerrará o processo de trabalho à força.