NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SystemEvents.AddOnLowMemory

Adds an event handler that will be called when the memory of the system is low. Different operating systems may raise this event for different reasons, but it usually indicates that the system is having trouble finding enough available memory to operate. On Windows 2000 systems, for example, this event will be raised when the system is spending more than 50% of its processor time locating memory than running user code.

[Visual Basic]
Public Shared Sub AddOnLowMemory( _
   ByVal handler As EventHandler _
)
[C#]
public static void AddOnLowMemory(
   EventHandler handler
);
[C++]
public: static void AddOnLowMemory(
   EventHandler* handler
);
[JScript]
public static function AddOnLowMemory(
   handler : EventHandler
);

Parameters

handler
The event handler to be added.

See Also

SystemEvents Class | SystemEvents Members | System.Core Namespace | TBD