| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Diagnostics.EventLogPermissionEntry.cs
- //
- // Authors:
- // Jonathan Pryor ([email protected])
- //
- // (C) 2002
- //
- using System;
- using System.Diagnostics;
- namespace System.Diagnostics {
- [Serializable]
- [MonoTODO("Just Stubbed Out")]
- public class EventLogPermissionEntry {
- // [MonoTODO]
- // public EventLogPermissionEntry(
- // EventLogPermissionAccess permissionAccess,
- // string machineName)
- // {
- // }
- //
- // [MonoTODO]
- // public string MachineName {
- // get {throw new NotImplementedException();}
- // }
- //
- // [MonoTODO]
- // public EventLogPermissionAccess PermissionAccess {
- // get {throw new NotImplementedException();}
- // }
- }
- }
|