Enum AllocationResultType
- Namespace
- Echo.Platforms.AsmResolver.Emulation.Invocation
- Assembly
- Echo.Platforms.AsmResolver.dll
Provides members describing the different types of allocation results that can be produced during an object allocation in a CIL virtual machine.
public enum AllocationResultType
Fields
Allocated = 1Indicates the object was allocated but not initialized yet and a constructor should be called.
Exception = 3Indicates the allocation failed with an exception.
FullyConstructed = 2Indicates the object was allocated and also initialized.
Inconclusive = 0Indicates the allocation was not handled yet.