EventLogEntry.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. //
  2. // System.Diagnostics.EventLogEntry.cs
  3. //
  4. // Authors:
  5. // Jonathan Pryor ([email protected])
  6. //
  7. // (C) 2002
  8. //
  9. using System;
  10. using System.ComponentModel;
  11. using System.Diagnostics;
  12. using System.Runtime.Serialization;
  13. namespace System.Diagnostics {
  14. [Serializable]
  15. [MonoTODO("Just stubbed out")]
  16. public sealed class EventLogEntry : Component, ISerializable {
  17. [MonoTODO]
  18. internal EventLogEntry ()
  19. {
  20. }
  21. // [MonoTODO]
  22. // public string Categery {
  23. // get {throw new NotImplementedException ();}
  24. // }
  25. //
  26. // [MonoTODO]
  27. // public short CategoryNumber {
  28. // get {throw new NotImplementedException ();}
  29. // }
  30. //
  31. // [MonoTODO]
  32. // public byte[] Data {
  33. // get {throw new NotImplementedException ();}
  34. // }
  35. //
  36. // [MonoTODO]
  37. // public EventLogEntryType EntryType {
  38. // get {throw new NotImplementedException ();}
  39. // }
  40. //
  41. // [MonoTODO]
  42. // public int EventID {
  43. // get {throw new NotImplementedException ();}
  44. // }
  45. //
  46. // [MonoTODO]
  47. // public int Index {
  48. // get {throw new NotImplementedException ();}
  49. // }
  50. //
  51. // [MonoTODO]
  52. // public string Machineame {
  53. // get {throw new NotImplementedException ();}
  54. // }
  55. //
  56. // [MonoTODO]
  57. // public string Message {
  58. // get {throw new NotImplementedException ();}
  59. // }
  60. //
  61. // [MonoTODO]
  62. // public string[] ReplacementStrings {
  63. // get {throw new NotImplementedException ();}
  64. // }
  65. //
  66. // [MonoTODO]
  67. // public string Source {
  68. // get {throw new NotImplementedException ();}
  69. // }
  70. //
  71. // [MonoTODO]
  72. // public DateTime TimeGenerated {
  73. // get {throw new NotImplementedException ();}
  74. // }
  75. //
  76. // [MonoTODO]
  77. // public DateTime TimeWritten {
  78. // get {throw new NotImplementedException ();}
  79. // }
  80. //
  81. // [MonoTODO]
  82. // public string UserName {
  83. // get {throw new NotImplementedException ();}
  84. // }
  85. //
  86. // [MonoTODO]
  87. // public bool Equals(EventLogEntry otherEntry)
  88. // {
  89. // throw new NotImplementedException ();
  90. // }
  91. //
  92. [MonoTODO]
  93. void ISerializable.GetObjectData(SerializationInfo info,
  94. StreamingContext context)
  95. {
  96. throw new NotImplementedException ();
  97. }
  98. }
  99. }