| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // System.Diagnostics.PerformanceCounterManager.cs
- //
- // Authors:
- // Jonathan Pryor ([email protected])
- //
- // (C) 2002
- //
- using System;
- using System.Diagnostics;
- using System.Runtime.InteropServices;
- namespace System.Diagnostics {
- [ComVisible(true)]
- // [Guid("")]
- public class PerformanceCounterManager : ICollectData {
- // [MonoTODO]
- // public PerformanceCounterManager ()
- // {
- // throw new NotImplementedException ();
- // }
- //
- [MonoTODO]
- void ICollectData.CloseData ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- void ICollectData.CollectData (
- int callIdx,
- IntPtr valueNamePtr,
- IntPtr dataPtr,
- int totalBytes,
- out IntPtr res)
- {
- throw new NotImplementedException ();
- }
- }
- }
|