2002-09-17 Nick Drochak <ndrochak@gol.com>
[mono.git] / mcs / class / System / System.Diagnostics / PerformanceCounterPermissionEntry.cs
1 //
2 // System.Diagnostics.PerformanceCounterPermissionEntry.cs
3 //
4 // Authors:
5 //   Jonathan Pryor (jonpryor@vt.edu)
6 //
7 // (C) 2002
8 //
9
10 using System;
11 using System.Diagnostics;
12
13 namespace System.Diagnostics {
14
15         [Serializable]
16         [MonoTODO]
17         public class PerformanceCounterPermissionEntry {
18
19 //              [MonoTODO]
20 //              public PerformanceCounterPermissionEntry (
21 //                      PerformanceCounterPermissionAccess permissionAccess,
22 //                      string machineName,
23 //                      string categoryName)
24 //              {
25 //                      throw new NotImplementedException ();
26 //              }
27 //
28 //              [MonoTODO]
29 //              public string CategoryName {
30 //                      get {throw new NotImplementedException ();}
31 //              }
32 //
33 //              [MonoTODO]
34 //              public string MachineName {
35 //                      get {throw new NotImplementedException ();}
36 //              }
37 //
38 //              [MonoTODO]
39 //              public PerformanceCounterPermissionAccess PermissionAccess {
40 //                      get {throw new NotImplementedException ();}
41 //              }
42         }
43 }
44