WebProcessStatistics.WorkingSet Property

Definition

Gets the working set for the process.

public:
 property long WorkingSet { long get(); };
public long WorkingSet { get; }
member this.WorkingSet : int64
Public ReadOnly Property WorkingSet As Long

Property Value

The working set for the process.

Examples

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

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

Applies to