Enum ServerComponentInitializationStatus
Enumeration representing the initialization status of server components (behaviours, data containers, etc.). Generic status enum used across all server component types.
public enum ServerComponentInitializationStatus
Fields
AlreadyInitialized = 2The server component was already initialized.
FailedToFindRequiredDependency = 6The server component failed to find a required dependency.
FailedToFindServer = 4The server component failed to find the server instance.
FailedToFindServerManager = 5The server component failed to find the server manager instance.
FailedToGetDataContainer = 7The server component failed to get a data container.
FailedToGetDbContext = 8The server component failed to get a database context.
InitializationFailed = 3The server component failed to initialize.
Initialized = 1The server component has been successfully initialized.
NotInitialized = 0The server component has not been initialized.