Constructor TraceEntry
TraceEntry(TraceCategory, string, string, string, string?, DateTime, object?)
Captures information about a trace event for debugging and testing.
public TraceEntry(TraceCategory Category, string Id, string Phase, string Method, string? Message, DateTime Timestamp, object? Data)
Parameters
CategoryTraceCategoryThe trace category (Command, Mouse, Keyboard, etc.).
IdstringIdentifying string of the related object (e.g.
View.ToIdentifyingString()).PhasestringThe phase of processing (e.g., "Entry", "Exit", "Routing").
MethodstringThe method name where the trace occurred.
MessagestringOptional additional context message.
TimestampDateTimeWhen the trace was captured.
DataobjectCategory-specific data (Command, MouseFlags, Key, etc.).