Table of Contents

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 = 1

Indicates the object was allocated but not initialized yet and a constructor should be called.

Exception = 3

Indicates the allocation failed with an exception.

FullyConstructed = 2

Indicates the object was allocated and also initialized.

Inconclusive = 0

Indicates the allocation was not handled yet.