This class holds conditional trace event information (return value of the debugger.Trace.Information function).
class TraceEventInfo: Number = 0 Name = "" Enable = True StartAddress = "" StartData = "" StartTraceType = TraceType.Execution EndAddress = "" EndData = "" EndTraceType = TraceType.Execution |
This holds a data condition (number) of an address starting a trace. |
||
This holds a data condition (number) of an address ending a trace. |
||
TraceEventInfo is a class, and it is passed as the return value when the debugger.Trace.Information function is executed. |
>>>info = debugger.Trace.Information() 1 Trace Enable main - sub >>>print info[0].Number 1 >>>print info[0].Name Trace >>>print info[0].Enable True >>> |