AssemblyLoadContext.CurrentContextualReflectionContext Property

Definition

Gets the AssemblyLoadContext set by the most recent call to EnterContextualReflection().

public:
 static property System::Runtime::Loader::AssemblyLoadContext ^ CurrentContextualReflectionContext { System::Runtime::Loader::AssemblyLoadContext ^ get(); };
public static System.Runtime.Loader.AssemblyLoadContext? CurrentContextualReflectionContext { get; }
static member CurrentContextualReflectionContext : System.Runtime.Loader.AssemblyLoadContext
Public Shared ReadOnly Property CurrentContextualReflectionContext As AssemblyLoadContext

Property Value

The AssemblyLoadContext set by the most recent call to EnterContextualReflection(). This value can be null. The value is stored in an AsyncLocal<T>, so the value is unique per asynchronous context.

Remarks

For more information, see AssemblyLoadContext.CurrentContextualReflectionContext design doc in .NET Core.

Applies to