Fix from Matt Kunze to add the other Process.Start overloads
[mono.git] / mcs / class / System / System.Diagnostics / EventLogPermissionEntry.cs
1 //
2 // System.Diagnostics.EventLogPermissionEntry.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("Just Stubbed Out")]
17         public class EventLogPermissionEntry {
18
19 //              [MonoTODO]
20 //              public EventLogPermissionEntry(
21 //                      EventLogPermissionAccess permissionAccess,
22 //                      string machineName)
23 //              {
24 //              }
25 //
26 //              [MonoTODO]
27 //              public string MachineName {
28 //                      get {throw new NotImplementedException();}
29 //              }
30 //
31 //              [MonoTODO]
32 //              public EventLogPermissionAccess PermissionAccess {
33 //                      get {throw new NotImplementedException();}
34 //              }
35         }
36 }
37