X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.WebControls.WebParts%2FConnectionPoint.cs;h=7529fae22e48b5add5dbe65bac841efd2490492f;hb=e137ff6f7e2594d3ce96b4c74b528d26cc80e11d;hp=73204e805efe8b9aca1870cb3e5c5414b7d75ff6;hpb=5bbfa8860b090e465a3aa45edeb9c94481ef1a22;p=mono.git diff --git a/mcs/class/System.Web/System.Web.UI.WebControls.WebParts/ConnectionPoint.cs b/mcs/class/System.Web/System.Web.UI.WebControls.WebParts/ConnectionPoint.cs index 73204e805ef..7529fae22e4 100644 --- a/mcs/class/System.Web/System.Web.UI.WebControls.WebParts/ConnectionPoint.cs +++ b/mcs/class/System.Web/System.Web.UI.WebControls.WebParts/ConnectionPoint.cs @@ -25,19 +25,18 @@ // Copyright (C) 2004 Novell, Inc (http://www.novell.com) // -#if NET_2_0 using System.Web; using System.Reflection; namespace System.Web.UI.WebControls.WebParts { public abstract class ConnectionPoint { - private bool allowMultiConn; - private string name = string.Empty; - private string id = "default"; - private Type interfaceType; - private Type controlType; - private MethodInfo callBackMethod; + bool allowMultiConn; + string name = string.Empty; + string id = "default"; + Type interfaceType; + Type controlType; + MethodInfo callBackMethod; public const string DefaultID = "default"; @@ -57,7 +56,7 @@ namespace System.Web.UI.WebControls.WebParts { get{ return callBackMethod; } } - [MonoTODO] + [MonoTODO ("Not implemented")] public virtual bool GetEnabled (Control control) { throw new NotImplementedException (); @@ -84,4 +83,3 @@ namespace System.Web.UI.WebControls.WebParts { } } } -#endif