DesignerVerbCollection.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. // System.ComponentModel.Design.DesignerVerbCollection.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Collections;
  9. using System.Runtime.InteropServices;
  10. namespace System.ComponentModel.Design
  11. {
  12. [ComVisible(true)]
  13. public class DesignerVerbCollection : CollectionBase
  14. {
  15. [MonoTODO]
  16. public DesignerVerbCollection(){
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public DesignerVerbCollection (DesignerVerb[] value){
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public DesignerVerb this[int index]
  25. {
  26. get {
  27. throw new NotImplementedException ();
  28. }
  29. set {
  30. throw new NotImplementedException ();
  31. }
  32. }
  33. [MonoTODO]
  34. public int Add (DesignerVerb value)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. [MonoTODO]
  39. public void AddRange (DesignerVerb[] value)
  40. {
  41. throw new NotImplementedException ();
  42. }
  43. [MonoTODO]
  44. public bool Contains (DesignerVerb value)
  45. {
  46. throw new NotImplementedException ();
  47. }
  48. [MonoTODO]
  49. public void CopyTo (DesignerVerb[] array, int index)
  50. {
  51. throw new NotImplementedException ();
  52. }
  53. [MonoTODO]
  54. public int IndexOf (DesignerVerb value)
  55. {
  56. throw new NotImplementedException ();
  57. }
  58. [MonoTODO]
  59. public void Insert (int index, DesignerVerb value)
  60. {
  61. throw new NotImplementedException ();
  62. }
  63. [MonoTODO]
  64. protected override void OnClear()
  65. {
  66. throw new NotImplementedException ();
  67. }
  68. [MonoTODO]
  69. protected override void OnInsert (int index, object value)
  70. {
  71. throw new NotImplementedException ();
  72. }
  73. [MonoTODO]
  74. protected override void OnRemove (int index, object value)
  75. {
  76. throw new NotImplementedException ();
  77. }
  78. [MonoTODO]
  79. protected override void OnSet(int index, object oldValue, object newValue)
  80. {
  81. throw new NotImplementedException ();
  82. }
  83. [MonoTODO]
  84. protected override void OnValidate(object value)
  85. {
  86. throw new NotImplementedException ();
  87. }
  88. [MonoTODO]
  89. public void Remove (DesignerVerb value)
  90. {
  91. throw new NotImplementedException ();
  92. }
  93. }
  94. }