Enumerates the possible execution scopes of a declaration i.e. RunTime, CompileTime or RunTimeOrCompileTime.
Namespace: Metalama.Framework.Code
Assembly: Metalama.Framework.dll
Syntax
[CompileTime]
public enum ExecutionScope
Fields
Name | Description |
---|---|
CompileTime | Compile-time-only declaration. Typically a type annotated with CompileTimeAttribute. |
Default | Equal to RunTime. |
RunTime | Run-time-only declaration. |
RunTimeOrCompileTime | Run-time-or-compile-time declaration. Typically an aspect or a type annotated with RunTimeOrCompileTimeAttribute. |