DkmNativeInstructionAddress.IsUserCodeExtended 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.
Determines if a given instruction address is user code or not.
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.
This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8).
public:
void IsUserCodeExtended(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Native::DkmIsUserCodeExtendedAsyncResult> ^ CompletionRoutine);
public void IsUserCodeExtended (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Native.DkmIsUserCodeExtendedAsyncResult> CompletionRoutine);
member this.IsUserCodeExtended : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Native.DkmIsUserCodeExtendedAsyncResult> -> unit
Public Sub IsUserCodeExtended (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmIsUserCodeExtendedAsyncResult))
Parameters
- WorkList
- DkmWorkList
WorkList to append the new work item to.
- CompletionRoutine
- DkmCompletionRoutine<DkmIsUserCodeExtendedAsyncResult>
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.