DkmNativeInstructionSymbol.Create(DkmModule, UInt32) 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.
Create a new DkmNativeInstructionSymbol object instance.
public:
static Microsoft::VisualStudio::Debugger::Native::DkmNativeInstructionSymbol ^ Create(Microsoft::VisualStudio::Debugger::Symbols::DkmModule ^ Module, System::UInt32 RVA);
public static Microsoft.VisualStudio.Debugger.Native.DkmNativeInstructionSymbol Create (Microsoft.VisualStudio.Debugger.Symbols.DkmModule Module, uint RVA);
static member Create : Microsoft.VisualStudio.Debugger.Symbols.DkmModule * uint32 -> Microsoft.VisualStudio.Debugger.Native.DkmNativeInstructionSymbol
Public Shared Function Create (Module As DkmModule, RVA As UInteger) As DkmNativeInstructionSymbol
Parameters
- Module
- DkmModule
[In] The DkmModule class represents a code bundle (ex: dll or exe) which is or once was loaded into one or more processes. The DkmModule class is the central object to the symbol APIs, and is 1:1 with the symbol handler's notation of what is loaded. If a code bundle loads into three different processes (or the same process but with three different base addresses or three different app domains) but the symbol handler thinks of all of these as being identical, there will be only one module object.
- RVA
- UInt32
[In] The RVA of InstructionPointer within Module.
Returns
[Out] Result of this method call.