Version

CalcFrequency Enumeration

Determines how frequently the calculations are done by the _CALCMANAGER_.
Syntax
'Declaration
 
Public Enum CalcFrequency 
   Inherits System.Enum
public enum CalcFrequency : System.Enum 
Members
MemberDescription
AsynchronousPerforming calculations based on a timer is not supported by the ASP.NET worker process. Treated as a setting of Synchronous.
Manual_CALCMANAGER_ never performs any calculations until the Recalc method is explicitly invoked.
SynchronousCalculations are performed every time a change notification is received. That is, every time a value involved in a calculation is changed, all dirtied calculations are recalculated and the UI thread is locked until all calculations are complete.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also