Merge pull request #4621 from alexanderkyte/strdup_env
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls.WebParts / ProviderConnectionPoint.cs
index 4e3f3fb6f053774b1120acdec1c651ef3bcab212..ce66e17394fd28c5287c01fd3f9169eded5ec1a3 100644 (file)
@@ -25,7 +25,6 @@
 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
 //
 
-#if NET_2_0
 using System.Web;
 using System.Reflection;
 
@@ -33,10 +32,10 @@ namespace System.Web.UI.WebControls.WebParts
 {
        public class ProviderConnectionPoint : ConnectionPoint
        {
-               public ProviderConnectionPoint (MethodInfo callBack, Type interFace,
-                       Type control, string name, string id,
-                       bool allowsMultiConnections) : base (callBack, interFace,
-                                       control, name, id, allowsMultiConnections)
+               public ProviderConnectionPoint (MethodInfo callbackMethod, Type interfaceType,
+                       Type controlType, string displayName, string id,
+                       bool allowsMultipleConnections) : base (callbackMethod, interfaceType,
+                                       controlType, displayName, id, allowsMultipleConnections)
                {
                }
 
@@ -53,4 +52,3 @@ namespace System.Web.UI.WebControls.WebParts
                }
        }
 }
-#endif