2025-05-12 03:44:31 +03:00
|
|
|
|
/*
|
|
|
|
|
* Author: Nikolay Dvurechensky
|
|
|
|
|
* Site: https://www.dvurechensky.pro/
|
|
|
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
|
|
|
* Last Updated: 12 мая 2025 03:39:52
|
|
|
|
|
* Version: 1.0.4
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Behavioral;
|
2024-10-05 09:30:14 +03:00
|
|
|
|
|
|
|
|
|
public class WindowsEventLogReader : ILogReader
|
|
|
|
|
{
|
|
|
|
|
public List<LogEntry> Read()
|
|
|
|
|
{
|
|
|
|
|
return new List<LogEntry>()
|
|
|
|
|
{
|
|
|
|
|
new LogEntry()
|
|
|
|
|
{
|
|
|
|
|
DateTime = DateTime.Now,
|
|
|
|
|
Message = GetType().Name,
|
|
|
|
|
Severity = LogType.Debug
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|