PerformanceCounterInstaller.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //
  2. // System.Diagnostics.PerformanceCounterInstaller.cs
  3. //
  4. // Authors:
  5. // Jonathan Pryor ([email protected])
  6. //
  7. // (C) 2002
  8. //
  9. using System;
  10. using System.Collections;
  11. // using System.Configuration.Install;
  12. using System.Diagnostics;
  13. using System.ComponentModel;
  14. namespace System.Diagnostics {
  15. public class PerformanceCounterInstaller {
  16. // [MonoTODO]
  17. // public PerformanceCounterInstaller ()
  18. // {
  19. // }
  20. //
  21. // // may throw ArgumentNullException
  22. // [MonoTODO]
  23. // public string CategoryHelp {
  24. // get {throw new NotImplementedException ();}
  25. // set {
  26. // if (value == null)
  27. // throw new ArgumentNullException ();
  28. // throw new NotImplementedException ();
  29. // }
  30. // }
  31. //
  32. // [MonoTODO]
  33. // public string CategoryName {
  34. // get {throw new NotImplementedException ();}
  35. // set {
  36. // if (value == null)
  37. // throw new ArgumentNullException ();
  38. // throw new NotImplementedException ();
  39. // }
  40. // }
  41. //
  42. // [MonoTODO]
  43. // public CounterCreationDataCollection Counters {
  44. // get {throw new NotImplementedException ();}
  45. // }
  46. //
  47. // [MonoTODO]
  48. // public UninstallAction UninstallAction {
  49. // get {throw new NotImplementedException ();}
  50. // set {throw new NotImplementedException ();}
  51. // }
  52. //
  53. // [MonoTODO]
  54. // public override void CopyFromComponent (IComponent component)
  55. // {
  56. // throw new NotImplementedException ();
  57. // }
  58. //
  59. // [MonoTODO]
  60. // public override void Install (IDictionary stateSaver)
  61. // {
  62. // throw new NotImplementedException ();
  63. // }
  64. //
  65. // [MonoTODO]
  66. // public override void Rollback (IDictionary savedState)
  67. // {
  68. // throw new NotImplementedException ();
  69. // }
  70. //
  71. // [MonoTODO]
  72. // public override void Uninstall (IDictionary savedState)
  73. // {
  74. // throw new NotImplementedException ();
  75. // }
  76. }
  77. }