Przeglądaj źródła

public only for 2.0

svn path=/trunk/mcs/; revision=104852
Marek Habersack 17 lat temu
rodzic
commit
88e2a12848

+ 6 - 1
mcs/class/System.Web/System.Web.UI/PageHandlerFactory.cs

@@ -33,7 +33,12 @@ using System.Web.Compilation;
 
 namespace System.Web.UI
 {
-	public class PageHandlerFactory : IHttpHandlerFactory
+#if NET_2_0
+	public
+#else
+	internal
+#endif
+	class PageHandlerFactory : IHttpHandlerFactory
 	{
 		public virtual IHttpHandler GetHandler (HttpContext context, string requestType, string url, string path)
 		{