ReadEventLog

[DllImport("Advapi32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool ReadEventLog(
   IntPtr hEventLog,
   uint dwReadFlags,
   uint dwRecordOffset,
   [Out] byte[] lpBuffer,
   uint nNumberOfBytesToRead,
   out uint pnBytesRead,
   out uint pnMinNumberOfBytesNeeded
);

Microsoft documentation: Link

Last updated