| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // System.Diagnostics.PerformanceCounterPermissionEntry.cs
- //
- // Authors:
- // Jonathan Pryor ([email protected])
- //
- // (C) 2002
- //
- using System;
- using System.Diagnostics;
- namespace System.Diagnostics {
- [Serializable]
- [MonoTODO]
- public class PerformanceCounterPermissionEntry {
- // [MonoTODO]
- // public PerformanceCounterPermissionEntry (
- // PerformanceCounterPermissionAccess permissionAccess,
- // string machineName,
- // string categoryName)
- // {
- // throw new NotImplementedException ();
- // }
- //
- // [MonoTODO]
- // public string CategoryName {
- // get {throw new NotImplementedException ();}
- // }
- //
- // [MonoTODO]
- // public string MachineName {
- // get {throw new NotImplementedException ();}
- // }
- //
- // [MonoTODO]
- // public PerformanceCounterPermissionAccess PermissionAccess {
- // get {throw new NotImplementedException ();}
- // }
- }
- }
|