Compartilhar via


HttpRuntimeSection.ShutdownTimeout Propriedade

Definição

Obtém ou define o período que o aplicativo pode permanecer ocioso antes que seja finalizado.

public:
 property TimeSpan ShutdownTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsConverter))]
[System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:01:30")]
public TimeSpan ShutdownTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsConverter))>]
[<System.Configuration.ConfigurationProperty("shutdownTimeout", DefaultValue="00:01:30")>]
member this.ShutdownTimeout : TimeSpan with get, set
Public Property ShutdownTimeout As TimeSpan

Valor da propriedade

TimeSpan

Um valor TimeSpan que indica o período que o aplicativo pode permanecer ocioso antes que seja finalizado.

Atributos

Exemplos

O exemplo a seguir mostra como usar a ShutdownTimeout propriedade.

// Get the ShutdownTimeout property value.
Response.Write("ShutdownTimeout: " +
  configSection.ShutdownTimeout.ToString() + "<br>");

// Set the ShutdownTimeout property value to 2 minutes.
configSection.ShutdownTimeout = TimeSpan.FromMinutes(2);
' Get the ShutdownTimeout property value.
Response.Write("ShutdownTimeout: " & _
  configSection.ShutdownTimeout.ToString() & "<br>")

' Set the ShutdownTimeout property value to 2 minutes.
configSection.ShutdownTimeout = TimeSpan.FromMinutes(2)

Comentários

A ShutdownTimeout propriedade indica a quantidade de tempo antes que um aplicativo seja desligado normalmente. O padrão é 90 segundos.

Aplica-se a