summaryrefslogtreecommitdiff
path: root/lang/mono/patches/patch-cm
blob: 32e0ec20cc9c26bd30e5ebd81262e88a2591daf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$NetBSD: patch-cm,v 1.1 2008/09/01 09:28:54 kefren Exp $
--- mcs/class/System.Web/System.Web.Configuration/HttpRuntimeConfig.cs	2008/08/21 16:19:17	111275
+++ mcs/class/System.Web/System.Web.Configuration/HttpRuntimeConfig.cs	2008/08/21 16:51:54	111276
@@ -55,7 +55,8 @@
 		public int IdleTimeout = 20; // minutes
 		public bool Enable = true;
 		public string VersionHeader;
-
+		public bool EnableHeaderChecking = true;
+		
 		/* Only the config. handler should create instances of this. Use GetInstance (context) */
 		public HttpRuntimeConfig (object p)
 		{
@@ -92,6 +93,7 @@
 			RequireRootSaveAsPath = parent.RequireRootSaveAsPath;
 			IdleTimeout = parent.IdleTimeout;
 			Enable = parent.Enable;
+			EnableHeaderChecking = parent.EnableHeaderChecking;
 		}
 	}
 }