DataSetInitialization Enumeration
Specifies how data sets are initialized when a Configuration is loaded.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public enum DataSetInitialization
Values
Value name | Value | Description |
---|---|---|
Immediate | 0 | Indicates that data sets will be initialized when a configuration is loaded. |
OnDemand | 1 | Indicates that data sets will be initialized the first time they are used instead of when the configuration is loaded. Errors that occur during initialization will typically result in an exception being thrown. |
OnDemandSuppressErrors | 2 | Like with OnDemand, data sets will be initialized the first time they are used. But using this flag will also suppress any exceptions that the initialization might throw and instead report any errors by firing the Runtime.Error event. Please see the remarks section of the DataSet class for more information. |
Platforms
Windows, Linux, Android