Explorar el Código

public only for 2.0

svn path=/trunk/mcs/; revision=104852
Marek Habersack hace 17 años
padre
commit
88e2a12848
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6 1
      mcs/class/System.Web/System.Web.UI/PageHandlerFactory.cs

+ 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)
 		{