WebControlToolboxItem.cs 1.3 KB

123456789101112131415161718192021
  1. using System;
  2. using System.ComponentModel.Design;
  3. using System.ComponentModel;
  4. using System.Web.UI.WebControls;
  5. using System.Collections;
  6. namespace System.Web.UI.Design {
  7. // HACK HACK: lets just let things compile
  8. [MonoTODO] public class WebControlToolboxItem /* : ToolboxItem */{
  9. [MonoTODO] public WebControlToolboxItem () { throw new NotImplementedException (); }
  10. [MonoTODO] public WebControlToolboxItem (Type type) { throw new NotImplementedException (); }
  11. //[MonoTODO] protected override IComponent [] CreateComponentsCore (IDesignerHost host) { throw new NotImplementedException (); }
  12. //[MonoTODO] protected override void Deserialize (SerializationInfo info, StreamingContext context) { throw new NotImplementedException (); }
  13. [MonoTODO] public object GetToolAttributeValue (IDesignerHost host, Type attributeType) { throw new NotImplementedException (); }
  14. [MonoTODO] public string GetToolHtml (IDesignerHost host) { throw new NotImplementedException (); }
  15. [MonoTODO] public Type GetToolType (IDesignerHost host) { throw new NotImplementedException (); }
  16. //[MonoTODO] public override void Initialize (Type type) { throw new NotImplementedException (); }
  17. //[MonoTODO] protected override void Serialize (SerializationInfo info, StreamingContext context) { throw new NotImplementedException (); }
  18. }
  19. }