This documentation is archived and is not being maintained.
WebProcessStatistics.PeakWorkingSet Property
.NET Framework (current version)
Gets the peak working set for the lifetime of the process to date.
Namespace:
System.Web.Management Assembly:
System.Web (in System.Web.dll)
public long PeakWorkingSet { get ; }
Property Value
Type:
System.Int64 The peak working set of the process.
The following code example shows how to get the PeakWorkingSet value.
public string GetPeakWorkingSet()
{
// Get the peak working set.
return (string .Format(
"Peak working set: {0}" ,
processStatistics.PeakWorkingSet.ToString()));
}
.NET Framework
Available since 2.0
Return to top