PerformanceCounterManager.cs 725 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // System.Diagnostics.PerformanceCounterManager.cs
  3. //
  4. // Authors:
  5. // Jonathan Pryor ([email protected])
  6. //
  7. // (C) 2002
  8. //
  9. using System;
  10. using System.Diagnostics;
  11. using System.Runtime.InteropServices;
  12. namespace System.Diagnostics {
  13. [ComVisible(true)]
  14. [Guid("82840be1-d273-11d2-b94a-00600893b17a")]
  15. public sealed class PerformanceCounterManager : ICollectData {
  16. [MonoTODO]
  17. public PerformanceCounterManager ()
  18. {
  19. }
  20. [MonoTODO]
  21. void ICollectData.CloseData ()
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. [MonoTODO]
  26. void ICollectData.CollectData (
  27. int callIdx,
  28. IntPtr valueNamePtr,
  29. IntPtr dataPtr,
  30. int totalBytes,
  31. out IntPtr res)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. }
  36. }