EventLogPermissionEntry.cs 659 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Diagnostics.EventLogPermissionEntry.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("Just Stubbed Out")]
  14. public class EventLogPermissionEntry {
  15. // [MonoTODO]
  16. // public EventLogPermissionEntry(
  17. // EventLogPermissionAccess permissionAccess,
  18. // string machineName)
  19. // {
  20. // }
  21. //
  22. // [MonoTODO]
  23. // public string MachineName {
  24. // get {throw new NotImplementedException();}
  25. // }
  26. //
  27. // [MonoTODO]
  28. // public EventLogPermissionAccess PermissionAccess {
  29. // get {throw new NotImplementedException();}
  30. // }
  31. }
  32. }