EventLogPermissionEntryCollection.cs 2.0 KB

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