1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- namespace Wayne.Lib.Log
- {
-
-
-
- internal class EventLogSubscriptionLogWriter : LogWriter
- {
- #region Fields
- private string subscriberId;
- private LogConfigEventLogStorageType storageType;
- #endregion
- #region Construction
- public EventLogSubscriptionLogWriter(string logName, LogConfigEventLogSubscriptionOutput output)
- : base(logName)
- {
- subscriberId = output.SubscriberId;
- storageType = output.StorageType;
- }
- #endregion
- #region Properties
-
-
-
- public string SubscriberId
- {
- get { return subscriberId; }
- }
-
-
-
- internal LogConfigEventLogStorageType StorageType
- {
- get { return storageType; }
- }
- #endregion
- #region Methods
-
-
-
-
-
- public override void PerformWrite(LogEntry logEntry)
- {
- EventLogEntry eventLogEntry = logEntry as EventLogEntry;
-
-
- }
-
-
-
-
-
- protected override void Dispose(bool disposing, string reason)
- {
- }
- #endregion
- }
- }
|