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 );
SystemEvents Class | SystemEvents Members | System.Core Namespace | TBD