Udostępnij za pośrednictwem


HttpRuntimeSection.DelayNotificationTimeout Właściwość

Definicja

Pobiera lub ustawia opóźnienie powiadomienia o zmianie.

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

Wartość właściwości

TimeSpan

Czas w sekundach określający opóźnienie powiadomienia o zmianie.

Atrybuty

Przykłady

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

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

// Set the DelayNotificationTimeout property value to 10 seconds.
configSection.DelayNotificationTimeout = TimeSpan.FromSeconds(10);
' Get the DelayNotificationTimeout property value.
Response.Write("DelayNotificationTimeout: " & _
  configSection.DelayNotificationTimeout.ToString() & "<br>")

' Set the DelayNotificationTimeout property value to 10 seconds.
configSection.DelayNotificationTimeout = TimeSpan.FromSeconds(10)

Uwagi

Możesz rozwiązać problem spowodowany przez niektóre aplikacje antywirusowe podczas zapisywania informacji z powrotem do zeskanowanych plików, ustawiając DelayNotificationTimeout właściwość.

Uwaga

Problem występuje, ponieważ zmiany plików spowodowane skanowaniem antywirusowym nie mogą być rozróżniane od tych, które zostały wprowadzone przez użytkownika. Wynikiem końcowym jest ponowne uruchomienie aplikacji, której pliki są skanowane.

Dotyczy