HttpRuntimeSection.DelayNotificationTimeout Property
.NET Framework 4
Gets or sets the change notification delay.
Assembly: System.Web (in System.Web.dll)
[TypeConverterAttribute(typeof(TimeSpanSecondsConverter))] [ConfigurationPropertyAttribute("delayNotificationTimeout", DefaultValue = "00:00:00")] public TimeSpan DelayNotificationTimeout { get; set; }
Property Value
Type: System.TimeSpanThe time, in seconds, that specifies the change notification delay.
You can address the problem caused by some antivirus applications, when writing information back to the scanned files, by setting the DelayNotificationTimeout property.
Note
|
|---|
|
The problem occurs because file changes caused by antivirus scanning cannot be distinguished from the ones made by the user. The end result is the restart of the application whose files are being scanned. |
The following example shows how to use the DelayNotificationTimeout property.
// 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);
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note