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
Dolgozzon együtt velünk a GitHubon
A tartalom forrása a GitHubon található, ahol létrehozhat és áttekinthet problémákat és lekéréses kérelmeket is. További információért tekintse meg a közreműködői útmutatónkat.