Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EventLogPermission.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1858ab6794af1baaa83f3dd17e965c35e2bfc54f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// System.Diagnostics.EventLogPermission.cs
//
// Authors:
//   Jonathan Pryor (jonpryor@vt.edu)
//
// (C) 2002 Jonathan Pryor
//

using System;
using System.Diagnostics;
using System.Security.Permissions;

namespace System.Diagnostics {

	[Serializable]
	[MonoTODO("Just Stubbed Out")]
	public class EventLogPermission 
//		: ResourcePermissionBase
	{
//		[MonoTODO]
//		public EventLogPermission()
//		{
//		}
//
//		[MonoTODO]
//		public EventLogPermission(
//			EventLogPermissionEntry[] permissionAccessEntries)
//		{
//		}
//
//		[MonoTODO]
//		public EventLogPermission(PermissionState state)
//		{
//		}
//
//		[MonoTODO]
//		public EventLogPermission(
//			EventLogPermissionAccess permissionAccess,
//			string machineName)
//		{
//		}
//
//		[MonoTODO]
//		public EventLogPermissionEntryCollection PermissionEntries {
//			get {throw new NotImplementedException();}
//		}
	}
}