AssemblyInfo.WorkingSet Property

Definition

Gets the amount of physical memory mapped to the process context.

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

Property Value

A Long containing the number of bytes of physical memory mapped to the process context.

Exceptions

A situation in which partial trust exists and the user lacks necessary permissions.

Examples

This example uses the My.Application.Info.WorkingSet property to display the number of bytes of physical memory mapped to the application.

MsgBox("Application working set: " & My.Application.Info.WorkingSet)

Remarks

The My.Application.Info.WorkingSet property has the same behavior as the WorkingSet property.

Availability by Project Type

Project type Available
Windows Forms Application Yes
Class Library Yes
Console Application Yes
Windows Forms Control Library Yes
Web Control Library No
Windows Service Yes
Web Site No

Applies to

See also