DkmThread.GetManagedThreadProperties Method

Definition

Overloads

GetManagedThreadProperties(Int32)

Get a managed thread's properties.

GetManagedThreadProperties(DkmWorkList, DkmCompletionRoutine<DkmGetManagedThreadPropertiesAsyncResult>)

Get a managed thread's 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.

GetManagedThreadProperties(Int32)

Get a managed thread's properties.

public:
 void GetManagedThreadProperties([Runtime::InteropServices::Out] int % ManagedThreadId);
public void GetManagedThreadProperties (out int ManagedThreadId);
member this.GetManagedThreadProperties : int -> unit
Public Sub GetManagedThreadProperties (ByRef ManagedThreadId As Integer)

Parameters

ManagedThreadId
Int32

[Out] The managed thread id of the thread.

Applies to

GetManagedThreadProperties(DkmWorkList, DkmCompletionRoutine<DkmGetManagedThreadPropertiesAsyncResult>)

Get a managed thread's 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 GetManagedThreadProperties(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::ThreadProperties::DkmGetManagedThreadPropertiesAsyncResult> ^ CompletionRoutine);
public void GetManagedThreadProperties (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.ThreadProperties.DkmGetManagedThreadPropertiesAsyncResult> CompletionRoutine);
member this.GetManagedThreadProperties : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.ThreadProperties.DkmGetManagedThreadPropertiesAsyncResult> -> unit
Public Sub GetManagedThreadProperties (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetManagedThreadPropertiesAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetManagedThreadPropertiesAsyncResult>

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