ProcessesStreamingTraceSourceExtensions.UseThreadRundownStopEvents 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.
Overloads
UseThreadRundownStopEvents(IStreamingTraceSource, IThreadRundownStopEventConsumer) |
Registers a consumer to receive parsed thread rundown stop events when the trace is processed. |
UseThreadRundownStopEvents(IStreamingTraceSource, ThreadRundownStopEventCallback) |
Registers a callback to receive parsed thread rundown stop events when the trace is processed. |
UseThreadRundownStopEvents(IStreamingTraceSource, ConsumerSchedule, ThreadRundownStopEventCallback) |
Registers a callback to receive parsed thread rundown stop events when the trace is processed. |
UseThreadRundownStopEvents(IStreamingTraceSource, IThreadRundownStopEventConsumer)
Registers a consumer to receive parsed thread rundown stop events when the trace is processed.
public static void UseThreadRundownStopEvents (this Microsoft.Windows.EventTracing.IStreamingTraceSource streamingTrace, Microsoft.Windows.EventTracing.Processes.IThreadRundownStopEventConsumer consumer);
static member UseThreadRundownStopEvents : Microsoft.Windows.EventTracing.IStreamingTraceSource * Microsoft.Windows.EventTracing.Processes.IThreadRundownStopEventConsumer -> unit
<Extension()>
Public Sub UseThreadRundownStopEvents (streamingTrace As IStreamingTraceSource, consumer As IThreadRundownStopEventConsumer)
Parameters
- streamingTrace
- IStreamingTraceSource
The trace from which to access the data.
- consumer
- IThreadRundownStopEventConsumer
The callback to call with the event parsing result.
Remarks
Event consumers that need to run in a specific pass can inherit from IScheduledConsumer.
Applies to
UseThreadRundownStopEvents(IStreamingTraceSource, ThreadRundownStopEventCallback)
Registers a callback to receive parsed thread rundown stop events when the trace is processed.
public static void UseThreadRundownStopEvents (this Microsoft.Windows.EventTracing.IStreamingTraceSource streamingTrace, Microsoft.Windows.EventTracing.Processes.ThreadRundownStopEventCallback process);
static member UseThreadRundownStopEvents : Microsoft.Windows.EventTracing.IStreamingTraceSource * Microsoft.Windows.EventTracing.Processes.ThreadRundownStopEventCallback -> unit
<Extension()>
Public Sub UseThreadRundownStopEvents (streamingTrace As IStreamingTraceSource, process As ThreadRundownStopEventCallback)
Parameters
- streamingTrace
- IStreamingTraceSource
The trace from which to access the data.
- process
- ThreadRundownStopEventCallback
The callback to register.
Applies to
UseThreadRundownStopEvents(IStreamingTraceSource, ConsumerSchedule, ThreadRundownStopEventCallback)
Registers a callback to receive parsed thread rundown stop events when the trace is processed.
public static void UseThreadRundownStopEvents (this Microsoft.Windows.EventTracing.IStreamingTraceSource streamingTrace, Microsoft.Windows.EventTracing.ConsumerSchedule schedule, Microsoft.Windows.EventTracing.Processes.ThreadRundownStopEventCallback process);
static member UseThreadRundownStopEvents : Microsoft.Windows.EventTracing.IStreamingTraceSource * Microsoft.Windows.EventTracing.ConsumerSchedule * Microsoft.Windows.EventTracing.Processes.ThreadRundownStopEventCallback -> unit
<Extension()>
Public Sub UseThreadRundownStopEvents (streamingTrace As IStreamingTraceSource, schedule As ConsumerSchedule, process As ThreadRundownStopEventCallback)
Parameters
- streamingTrace
- IStreamingTraceSource
The trace from which to access the data.
- schedule
- ConsumerSchedule
The schedule indicating when to parse the events.
- process
- ThreadRundownStopEventCallback
The callback to register.