Show / Hide Table of Contents

Class RuntimeFeaturesAttribute

Indicates that the code inside of method, type, module or assembly relies on specific runtime features.

Inheritance
Object
RuntimeFeaturesAttribute
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 Source

Augmentation

Indicates that code is augmented using .NEXT Weaver.

Declaration
public bool Augmentation
Field Value
Type Description
Boolean
| Improve this Doc View Source

DynamicCodeCompilation

Indicates that code relies on dynamic IL code generation or compilation of Expression Trees.

Declaration
public bool DynamicCodeCompilation
Field Value
Type Description
Boolean
| Improve this Doc View Source

PrivateReflection

Indicates that code relies on reflection of private or internal members.

Declaration
public bool PrivateReflection
Field Value
Type Description
Boolean
| Improve this Doc View Source

RuntimeGenericInstantiation

Indicates that code relies on or calls.

Declaration
public bool RuntimeGenericInstantiation
Field Value
Type Description
Boolean

Extension Methods

AsyncLockAcquisition.AcquireLockAsync<T>(T, TimeSpan)
AsyncLockAcquisition.AcquireLockAsync<T>(T, CancellationToken)
AsyncLockAcquisition.AcquireReadLockAsync<T>(T, TimeSpan)
AsyncLockAcquisition.AcquireReadLockAsync<T>(T, CancellationToken)
AsyncLockAcquisition.AcquireWriteLockAsync<T>(T, TimeSpan)
AsyncLockAcquisition.AcquireWriteLockAsync<T>(T, CancellationToken)
AsyncLockAcquisition.AcquireUpgradeableReadLockAsync<T>(T, TimeSpan)
AsyncLockAcquisition.AcquireUpgradeableReadLockAsync<T>(T, CancellationToken)
ExpressionBuilder.Const<T>(T)
ObjectExtensions.GetUserData<T>(T)
ObjectExtensions.IsOneOf<T>(T, IEnumerable<T>)
ObjectExtensions.IsOneOf<T>(T, T[])
ObjectExtensions.Decompose<T, R1, R2>(T, Func<T, R1>, Func<T, R2>, out R1, out R2)
ObjectExtensions.Decompose<T, R1, R2>(T, ValueFunc<T, R1>, ValueFunc<T, R2>, out R1, out R2)
ObjectExtensions.Decompose<T, R1, R2>(T, Func<T, R1>, Func<T, R2>)
ObjectExtensions.Decompose<T, R1, R2>(T, ValueFunc<T, R1>, ValueFunc<T, R2>)
LockAcquisition.AcquireReadLock<T>(T)
LockAcquisition.AcquireReadLock<T>(T, TimeSpan)
LockAcquisition.AcquireWriteLock<T>(T)
LockAcquisition.AcquireWriteLock<T>(T, TimeSpan)
LockAcquisition.AcquireUpgradeableReadLock<T>(T)
LockAcquisition.AcquireUpgradeableReadLock<T>(T, TimeSpan)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX