AssemblyLoadContext.CurrentContextualReflectionContext Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.