DkmRuntimeInstanceId(Guid, UInt64) Constructor
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.
Initialize a new DkmRuntimeInstanceId value.
public:
DkmRuntimeInstanceId(Guid RuntimeType, System::UInt64 InstanceId);
public DkmRuntimeInstanceId (Guid RuntimeType, ulong InstanceId);
new Microsoft.VisualStudio.Debugger.DkmRuntimeInstanceId : Guid * uint64 -> Microsoft.VisualStudio.Debugger.DkmRuntimeInstanceId
Public Sub New (RuntimeType As Guid, InstanceId As ULong)
Parameters
- RuntimeType
- Guid
[In] Indicates which type of runtime instance this is (ex: native code, CLR, etc).
- InstanceId
- UInt64
[In] Used along with the 'RuntimeType' to uniquely identify a particular runtime instance within a given DkmProcess. If the 'RuntimeType' only supports a single runtime instance per process (ex: DkmRuntimeId.Native), this value is typically zero. For DkmRuntimeId.Clr, this value is the base address of the CLR dll.