DkmProcess.GetMemoryReadTime(UInt64, UInt32, DkmMemoryTimeFlags) Method

Definition

Called to find out what time relative to the current process time a value from a memory read is resolved from.

This API was introduced in Visual Studio 15 Update 8 (DkmApiVersion.VS15Update8).

public:
 void GetMemoryReadTime(System::UInt64 BaseAddress, System::UInt32 Size, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Debugger::DkmMemoryTimeFlags % WorstMemoryTimeFlags);
public void GetMemoryReadTime (ulong BaseAddress, uint Size, out Microsoft.VisualStudio.Debugger.DkmMemoryTimeFlags WorstMemoryTimeFlags);
member this.GetMemoryReadTime : uint64 * uint32 * DkmMemoryTimeFlags -> unit
Public Sub GetMemoryReadTime (BaseAddress As ULong, Size As UInteger, ByRef WorstMemoryTimeFlags As DkmMemoryTimeFlags)

Parameters

BaseAddress
UInt64

[In] The base address of a memory read.

Size
UInt32

[In] The size of the memory read.

WorstMemoryTimeFlags
DkmMemoryTimeFlags

[Out] The read flags representing the lowest confidence memory read across the given address range.

Applies to