DkmClrInstructionAddress.GetNonUserCodeMetadataFlags 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
GetNonUserCodeMetadataFlags() |
Obtains non user code status for this instruction address. |
GetNonUserCodeMetadataFlags(DkmWorkList, DkmCompletionRoutine<DkmGetNonUserCodeMetadataFlagsAsyncResult>) |
Obtains non user code status for this instruction address. 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. |
GetNonUserCodeMetadataFlags()
Obtains non user code status for this instruction address.
public:
Microsoft::VisualStudio::Debugger::Clr::DkmNonUserCodeFlags GetNonUserCodeMetadataFlags();
public:
Microsoft::VisualStudio::Debugger::Clr::DkmNonUserCodeFlags GetNonUserCodeMetadataFlags();
Microsoft::VisualStudio::Debugger::Clr::DkmNonUserCodeFlags GetNonUserCodeMetadataFlags();
public Microsoft.VisualStudio.Debugger.Clr.DkmNonUserCodeFlags GetNonUserCodeMetadataFlags ();
member this.GetNonUserCodeMetadataFlags : unit -> Microsoft.VisualStudio.Debugger.Clr.DkmNonUserCodeFlags
Public Function GetNonUserCodeMetadataFlags () As DkmNonUserCodeFlags
Returns
[Out] The non user code status for this instruction address.
Applies to
GetNonUserCodeMetadataFlags(DkmWorkList, DkmCompletionRoutine<DkmGetNonUserCodeMetadataFlagsAsyncResult>)
Obtains non user code status for this instruction address.
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 GetNonUserCodeMetadataFlags(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Clr::DkmGetNonUserCodeMetadataFlagsAsyncResult> ^ CompletionRoutine);
public void GetNonUserCodeMetadataFlags (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetNonUserCodeMetadataFlagsAsyncResult> CompletionRoutine);
member this.GetNonUserCodeMetadataFlags : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Clr.DkmGetNonUserCodeMetadataFlagsAsyncResult> -> unit
Public Sub GetNonUserCodeMetadataFlags (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetNonUserCodeMetadataFlagsAsyncResult))
Parameters
- WorkList
- DkmWorkList
WorkList to append the new work item to.
- CompletionRoutine
- DkmCompletionRoutine<DkmGetNonUserCodeMetadataFlagsAsyncResult>
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.