Merge pull request #4621 from alexanderkyte/strdup_env
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls.WebParts / ProviderConnectionPoint.cs
index 22cbd0e66fad708abc00f3b086213bc2609c2112..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,24 +32,23 @@ 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)
                {
                }
 
-               [MonoTODO]
+               [MonoTODO ("Not implemented")]
                public virtual object GetObject (Control control)
                {
                        throw new NotImplementedException ();
                }
 
-               [MonoTODO]
+               [MonoTODO ("Not implemented")]
                public virtual ConnectionInterfaceCollection GetSecondaryInterfaces (Control control)
                {
                        throw new NotImplementedException ();
                }
        }
 }
-#endif