Class ProcessMemoryUsage
Definition
- Namespace:
- Tizen.System
- Assembly:
- Tizen.System.Information.dll
- API Level:
- 4
The class for memory information per process.
C#Copypublic class ProcessMemoryUsage
- Inheritance
-
System.ObjectProcessMemoryUsage
Constructors
ProcessMemoryUsage(IEnumerable<Int32>)
The constructor of ProcessMemoryInformation class.
Declaration
C#Copypublic ProcessMemoryUsage(IEnumerable<int> pid)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<Int32> | pid | List of unique process ids. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
IOException | Thrown when an I/O error occurs while reading from the system or requesting to the resource management daemon. |
OutOfMemoryException | Thrown when the memory is not enough to allocate. |
UnauthorizedAccessException | Thrown when the caller does not have privilege to use this method. |
API Level: 4
Privilege Level: public
Privilege: http://tizen.org/privilege/systemmonitor
Properties
Declaration
C#Copypublic int Count { get; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 4
Methods
GetPrivateClean(Int32)
Gets the size not modified and available only to that process of a process.
Declaration
C#Copypublic int GetPrivateClean(int pid)
Parameters
Type | Name | Description |
---|---|---|
Int32 | pid | The process id. |
Returns
Type | Description |
---|---|
Int32 | The private clean memory size |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
API Level: 4
GetPrivateDirty(Int32)
Gets the size modified and available only to that process of a process.
Declaration
C#Copypublic int GetPrivateDirty(int pid)
Parameters
Type | Name | Description |
---|---|---|
Int32 | pid | The process id. |
Returns
Type | Description |
---|---|
Int32 | The private dirty memory size |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
API Level: 4
Declaration
C#Copypublic int GetPss(int pid)
Parameters
Type | Name | Description |
---|---|---|
Int32 | pid | The process id. |
Returns
Type | Description |
---|---|
Int32 | The proportional set size |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
API Level: 4
Declaration
C#Copypublic int GetRss(int pid)
Parameters
Type | Name | Description |
---|---|---|
Int32 | pid | The process id. |
Returns
Type | Description |
---|---|
Int32 | The resident set size |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
API Level: 4
GetSharedClean(Int32)
Gets the size not modified and mapped by other processes of a process.
Declaration
C#Copypublic int GetSharedClean(int pid)
Parameters
Type | Name | Description |
---|---|---|
Int32 | pid | The process id. |
Returns
Type | Description |
---|---|
Int32 | The shared clean memory size |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
API Level: 4
GetSharedDirty(Int32)
Gets the size modified and mapped by other processes of a process.
Declaration
C#Copypublic int GetSharedDirty(int pid)
Parameters
Type | Name | Description |
---|---|---|
Int32 | pid | The process id. |
Returns
Type | Description |
---|---|
Int32 | The shared dirty memory size |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
API Level: 4
Declaration
C#Copypublic int GetVsz(int pid)
Parameters
Type | Name | Description |
---|---|---|
Int32 | pid | The process id. |
Returns
Type | Description |
---|---|
Int32 | The virtual memory size |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
API Level: 4
Declaration
C#Copypublic void Update(IEnumerable<int> pid)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<Int32> | pid | List of unique process ids. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when the |
IOException | Thrown when an I/O error occurs while reading from the system or requesting to the resource management daemon. |
OutOfMemoryException | Thrown when the memory is not enough to allocate. |
UnauthorizedAccessException | Thrown when the caller does not have privilege to use this method. |