Browse Source

make ProcessRequest virtual under TARGET_JVM

svn path=/trunk/mcs/; revision=55232
Konstantin Triger 20 years ago
parent
commit
abdf921fc2

+ 4 - 0
mcs/class/System.Web/System.Web.UI/ChangeLog

@@ -1,3 +1,7 @@
+2006-01-09  Konstantin Triger <[email protected]>
+
+	* Page.cs: make ProcessRequest virtual under TARGET_JVM.
+
 2006-01-04  Chris Toshok  <[email protected]>
 
 	* TemplateParser.cs (.ctor): kinda gross, but handle the

+ 4 - 0
mcs/class/System.Web/System.Web.UI/Page.cs

@@ -899,7 +899,11 @@ public class Page : TemplateControl, IHttpHandler
 	}
 
 	[EditorBrowsable (EditorBrowsableState.Never)]
+#if TARGET_JVM
+	public virtual void ProcessRequest (HttpContext context)
+#else
 	public void ProcessRequest (HttpContext context)
+#endif
 	{
 		_context = context;
 		if (clientTarget != null)