DkmProcess.OnTraceTimeContextSet Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raise a TraceTimeContextSet event. Components which implement the event sink interface will receive the event notification. Control will return once all components have been notified.
This method may only be called by the component which created the object.
This API was introduced in Visual Studio 16 Update 2 (DkmApiVersion.VS16Update2).
public:
void OnTraceTimeContextSet(Microsoft::VisualStudio::Debugger::DkmTraceTimeContext ^ RangeStart, Microsoft::VisualStudio::Debugger::DkmTraceTimeContext ^ RangeEnd, Microsoft::VisualStudio::Debugger::DkmTraceTimeContext ^ ReplayPosition, Microsoft::VisualStudio::Debugger::DkmThread ^ StoppedThread);
public void OnTraceTimeContextSet (Microsoft.VisualStudio.Debugger.DkmTraceTimeContext RangeStart, Microsoft.VisualStudio.Debugger.DkmTraceTimeContext RangeEnd, Microsoft.VisualStudio.Debugger.DkmTraceTimeContext ReplayPosition, Microsoft.VisualStudio.Debugger.DkmThread StoppedThread);
member this.OnTraceTimeContextSet : Microsoft.VisualStudio.Debugger.DkmTraceTimeContext * Microsoft.VisualStudio.Debugger.DkmTraceTimeContext * Microsoft.VisualStudio.Debugger.DkmTraceTimeContext * Microsoft.VisualStudio.Debugger.DkmThread -> unit
Public Sub OnTraceTimeContextSet (RangeStart As DkmTraceTimeContext, RangeEnd As DkmTraceTimeContext, ReplayPosition As DkmTraceTimeContext, StoppedThread As DkmThread)
Parameters
- RangeStart
- DkmTraceTimeContext
[In] A point of time within a time travel trace. The internal representation is an implementation detail of the creator.
- RangeEnd
- DkmTraceTimeContext
[In] A point of time within a time travel trace. The internal representation is an implementation detail of the creator.
- ReplayPosition
- DkmTraceTimeContext
[In] A point of time within a time travel trace. The internal representation is an implementation detail of the creator.
- StoppedThread
- DkmThread
[In] DkmThread represents a thread running in the target process.