FindMyFiles
FindMyFiles.Engine
ErrorEventData Class
One entry from the engine's diagnostic ring (WARN+ events and
panics; mirrors fmf-core's ErrorEvent). Pulled on demand after an
EngineErrorOccurred signal and listed in the
F12 panel.
public sealed class ErrorEventData
Inheritance System.Object → ErrorEventData
Properties
ErrorEventData.Area Property
Originating tracing target (module path) — the "where"
of the event.
public string Area { get; set; }
Property Value
ErrorEventData.Message Property
Human-readable description of what happened.
public string Message { get; set; }
Property Value
ErrorEventData.Seq Property
Monotonic emit sequence — orders events and lets the UI detect ones it has already shown.
public ulong Seq { get; set; }
Property Value
ErrorEventData.Severity Property
Level as a lowercase string: "warn", "error" or
"panic" (the same 1/2/3 the FFI event carries numerically).
public string Severity { get; set; }
Property Value
ErrorEventData.UptimeMs Property
Engine uptime in ms when the event fired ("when").
public ulong UptimeMs { get; set; }
Property Value
ErrorEventData.Volume Property
Drive label the event is attributed to, or null when it is not volume-scoped.
public string? Volume { get; set; }