Share via


ProcessMemoryUsageReport.PeakVirtualMemorySizeInBytes Property

Definition

Gets the maximum amount of virtual memory used by the associated process.

public:
 property unsigned long long PeakVirtualMemorySizeInBytes { unsigned long long get(); };
uint64_t PeakVirtualMemorySizeInBytes();
public ulong PeakVirtualMemorySizeInBytes { get; }
var uInt64 = processMemoryUsageReport.peakVirtualMemorySizeInBytes;
Public ReadOnly Property PeakVirtualMemorySizeInBytes As ULong

Property Value

UInt64

unsigned long long

uint64_t

The maximum amount of virtual memory, in bytes, allocated for the associated process since it was started.

Remarks

The value returned by this property represents the maximum size of virtual memory used by the process since it started. The operating system maps the virtual address space for each process either to pages loaded in physical memory, or to pages stored in the virtual memory paging file on disk.

Applies to