WebProcessStatistics.WorkingSet Property

 

Gets the working set for the process.

Namespace:   System.Web.Management
Assembly:  System.Web (in System.Web.dll)

Public ReadOnly Property WorkingSet As Long

Property Value

Type: System.Int64

The working set for the process.

The following code example shows how to get the WorkingSet value.

Public Function GetWorkingSet() As String
    ' Get the working set.
    Return String.Format( _
    "Working set: {0}", _
    processStatistics.WorkingSet.ToString())
End Function 'GetWorkingSet


.NET Framework
Available since 2.0
Return to top
Show: