Class RuntimeFeaturesAttribute
Indicates that the code inside of method, type, module or assembly relies on specific runtime features.
Namespace: DotNext.Runtime.CompilerServices
Assembly: DotNext.dll
Syntax
public sealed class RuntimeFeaturesAttribute : Attribute
Remarks
This attribute informs the developer about potential portability and performance issues associated with the marked program element.
Fields
| Improve this Doc View SourceAugmentation
Indicates that code is augmented using .NEXT Weaver.
Declaration
public bool Augmentation
Field Value
Type | Description |
---|---|
Boolean |
DynamicCodeCompilation
Indicates that code relies on dynamic IL code generation or compilation of Expression Trees.
Declaration
public bool DynamicCodeCompilation
Field Value
Type | Description |
---|---|
Boolean |
PrivateReflection
Indicates that code relies on reflection of private or internal members.
Declaration
public bool PrivateReflection
Field Value
Type | Description |
---|---|
Boolean |
RuntimeGenericInstantiation
Indicates that code relies on
Declaration
public bool RuntimeGenericInstantiation
Field Value
Type | Description |
---|---|
Boolean |