DkmThread.GetVolatileProperties Method

Definition

Overloads

GetVolatileProperties(DkmWorkList, DkmCompletionRoutine<DkmGetVolatilePropertiesAsyncResult>)

Get a thread's dynamic properties.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

GetVolatileProperties(Int32, UInt64)

Get a thread's dynamic properties.

GetVolatileProperties(DkmWorkList, DkmCompletionRoutine<DkmGetVolatilePropertiesAsyncResult>)

Get a thread's dynamic properties.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

public:
 void GetVolatileProperties(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::ThreadProperties::DkmGetVolatilePropertiesAsyncResult> ^ CompletionRoutine);
public void GetVolatileProperties (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.ThreadProperties.DkmGetVolatilePropertiesAsyncResult> CompletionRoutine);
member this.GetVolatileProperties : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.ThreadProperties.DkmGetVolatilePropertiesAsyncResult> -> unit
Public Sub GetVolatileProperties (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetVolatilePropertiesAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetVolatilePropertiesAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to

GetVolatileProperties(Int32, UInt64)

Get a thread's dynamic properties.

public:
 void GetVolatileProperties([Runtime::InteropServices::Out] int % Priority, [Runtime::InteropServices::Out] System::UInt64 % AffinityMask);
public void GetVolatileProperties (out int Priority, out ulong AffinityMask);
member this.GetVolatileProperties : int * uint64 -> unit
Public Sub GetVolatileProperties (ByRef Priority As Integer, ByRef AffinityMask As ULong)

Parameters

Priority
Int32

[Out] The priority of the thread. The values returned correspond directly to the values defined for kernel32!GetThreadPriority.

AffinityMask
UInt64

[Out] The affinity mask of the thread. The values returned correspond directly to the values defined for kernel32!SetThreadAffinityMask.

Applies to