PerformanceCounterManager.cs 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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("")]
  15. public class PerformanceCounterManager : ICollectData {
  16. // [MonoTODO]
  17. // public PerformanceCounterManager ()
  18. // {
  19. // throw new NotImplementedException ();
  20. // }
  21. //
  22. [MonoTODO]
  23. void ICollectData.CloseData ()
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. void ICollectData.CollectData (
  29. int callIdx,
  30. IntPtr valueNamePtr,
  31. IntPtr dataPtr,
  32. int totalBytes,
  33. out IntPtr res)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. }
  38. }