PerformanceCounterPermissionEntry.cs 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.Diagnostics.PerformanceCounterPermissionEntry.cs
  3. //
  4. // Authors:
  5. // Jonathan Pryor ([email protected])
  6. //
  7. // (C) 2002
  8. //
  9. using System;
  10. using System.Diagnostics;
  11. namespace System.Diagnostics {
  12. [Serializable]
  13. [MonoTODO]
  14. public class PerformanceCounterPermissionEntry {
  15. // [MonoTODO]
  16. // public PerformanceCounterPermissionEntry (
  17. // PerformanceCounterPermissionAccess permissionAccess,
  18. // string machineName,
  19. // string categoryName)
  20. // {
  21. // throw new NotImplementedException ();
  22. // }
  23. //
  24. // [MonoTODO]
  25. // public string CategoryName {
  26. // get {throw new NotImplementedException ();}
  27. // }
  28. //
  29. // [MonoTODO]
  30. // public string MachineName {
  31. // get {throw new NotImplementedException ();}
  32. // }
  33. //
  34. // [MonoTODO]
  35. // public PerformanceCounterPermissionAccess PermissionAccess {
  36. // get {throw new NotImplementedException ();}
  37. // }
  38. }
  39. }