Author: mhabersack
Date: 2008-02-06 07:43:55 -0500 (Wed, 06 Feb 2008)
New Revision: 95015

Modified:
   trunk/mcs/class/System.Web/System.Web/ChangeLog
   trunk/mcs/class/System.Web/System.Web/HttpRuntime.cs
Log:
        Watch for Created event in the FileSystemWatcher for the
        app_offline.htm files.


Modified: trunk/mcs/class/System.Web/System.Web/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web/ChangeLog     2008-02-06 12:11:27 UTC 
(rev 95014)
+++ trunk/mcs/class/System.Web/System.Web/ChangeLog     2008-02-06 12:43:55 UTC 
(rev 95015)
@@ -5,6 +5,8 @@
 
        * HttpRuntime.cs: when switching to offline mode fire the
        shutdown events. Fixes bug #357565.
+       Watch for Created event in the FileSystemWatcher for the
+       app_offline.htm files.
 
 2008-01-29  Vladimir Krasnov  <[EMAIL PROTECTED]>
 

Modified: trunk/mcs/class/System.Web/System.Web/HttpRuntime.cs
===================================================================
--- trunk/mcs/class/System.Web/System.Web/HttpRuntime.cs        2008-02-06 
12:11:27 UTC (rev 95014)
+++ trunk/mcs/class/System.Web/System.Web/HttpRuntime.cs        2008-02-06 
12:43:55 UTC (rev 95015)
@@ -403,6 +403,7 @@
                                        watcher.NotifyFilter |= 
NotifyFilters.Size;
                                        watcher.Deleted += seh;
                                        watcher.Changed += seh;
+                                       watcher.Created += seh;
                                        watcher.Renamed += reh;
                                        watcher.EnableRaisingEvents = true;
                                        

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to