WebProcessStatistics.WorkingSet Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.