Udostępnij za pośrednictwem


HttpRuntimeSection.ShutdownTimeout Właściwość

Definicja

Pobiera lub ustawia czas bezczynności aplikacji przed jej zakończeniem.

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

Wartość właściwości

TimeSpan Wartość wskazująca czas bezczynności aplikacji przed jej zakończeniem.

Atrybuty

Przykłady

W poniższym przykładzie pokazano, jak używać ShutdownTimeout właściwości .

// 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)

Uwagi

Właściwość ShutdownTimeout wskazuje czas, po jakim aplikacja zostanie bezpiecznie zamknięta. Wartość domyślna to 90 sekund.

Dotyczy