DkmModule.GetMethodSymbolStoreDataPreRemap 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
GetMethodSymbolStoreDataPreRemap(DkmClrMethodId, Int32) |
Returns the scopes within a method. There will always be at least one scope. |
GetMethodSymbolStoreDataPreRemap(DkmWorkList, DkmClrMethodId, DkmCompletionRoutine<DkmGetMethodSymbolStoreDataPreRemapAsyncResult>) |
Returns the scopes within a method. There will always be at least one scope. 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. |
GetMethodSymbolStoreDataPreRemap(DkmClrMethodId, Int32)
Returns the scopes within a method. There will always be at least one scope.
public:
cli::array <Microsoft::VisualStudio::Debugger::Clr::DkmClrMethodScopeData> ^ GetMethodSymbolStoreDataPreRemap(Microsoft::VisualStudio::Debugger::Clr::DkmClrMethodId MethodId, [Runtime::InteropServices::Out] int % RemapToken);
public Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodScopeData[] GetMethodSymbolStoreDataPreRemap (Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId MethodId, out int RemapToken);
member this.GetMethodSymbolStoreDataPreRemap : Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId * int -> Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodScopeData[]
Public Function GetMethodSymbolStoreDataPreRemap (MethodId As DkmClrMethodId, ByRef RemapToken As Integer) As DkmClrMethodScopeData()
Parameters
- MethodId
- DkmClrMethodId
[In] Method Id PreRemap.
- RemapToken
- Int32
[Out] Method token after the Remap.
Returns
[Out] DkmClrMethodScopeData[] describes a scope within a method. These are defined using ISymUnmanagedWriter::OpenScope/CloseScope.
Applies to
GetMethodSymbolStoreDataPreRemap(DkmWorkList, DkmClrMethodId, DkmCompletionRoutine<DkmGetMethodSymbolStoreDataPreRemapAsyncResult>)
Returns the scopes within a method. There will always be at least one scope.
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 GetMethodSymbolStoreDataPreRemap(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::Clr::DkmClrMethodId MethodId, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Symbols::DkmGetMethodSymbolStoreDataPreRemapAsyncResult> ^ CompletionRoutine);
public void GetMethodSymbolStoreDataPreRemap (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId MethodId, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetMethodSymbolStoreDataPreRemapAsyncResult> CompletionRoutine);
member this.GetMethodSymbolStoreDataPreRemap : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.Clr.DkmClrMethodId * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetMethodSymbolStoreDataPreRemapAsyncResult> -> unit
Public Sub GetMethodSymbolStoreDataPreRemap (WorkList As DkmWorkList, MethodId As DkmClrMethodId, CompletionRoutine As DkmCompletionRoutine(Of DkmGetMethodSymbolStoreDataPreRemapAsyncResult))
Parameters
- WorkList
- DkmWorkList
WorkList to append the new work item to.
- MethodId
- DkmClrMethodId
[In] Method Id PreRemap.
- CompletionRoutine
- DkmCompletionRoutine<DkmGetMethodSymbolStoreDataPreRemapAsyncResult>
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.