AssemblyLoadContext.EnterContextualReflection Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
EnterContextualReflection() |
Legt CurrentContextualReflectionContext auf |
EnterContextualReflection(Assembly) |
Legt CurrentContextualReflectionContext auf den AssemblyLoadContext fest, der die Assembly geladen hat. |
EnterContextualReflection()
- Quelle:
- AssemblyLoadContext.cs
- Quelle:
- AssemblyLoadContext.cs
- Quelle:
- AssemblyLoadContext.cs
Legt CurrentContextualReflectionContext auf this
AssemblyLoadContext fest.
public:
System::Runtime::Loader::AssemblyLoadContext::ContextualReflectionScope EnterContextualReflection();
public System.Runtime.Loader.AssemblyLoadContext.ContextualReflectionScope EnterContextualReflection ();
member this.EnterContextualReflection : unit -> System.Runtime.Loader.AssemblyLoadContext.ContextualReflectionScope
Public Function EnterContextualReflection () As AssemblyLoadContext.ContextualReflectionScope
Gibt zurück
Ein Objekt zum Wiederherstellen des vorherigen Werts von CurrentContextualReflectionContext. Ist für die Verwendung als ein IDisposable in einem using
-Block vorgesehen.
Hinweise
Weitere Informationen finden Sie unter AssemblyLoadContext.CurrentContextualReflectionContext design doc in .NET Core.
Gilt für:
EnterContextualReflection(Assembly)
- Quelle:
- AssemblyLoadContext.cs
- Quelle:
- AssemblyLoadContext.cs
- Quelle:
- AssemblyLoadContext.cs
Legt CurrentContextualReflectionContext auf den AssemblyLoadContext fest, der die Assembly geladen hat.
public:
static System::Runtime::Loader::AssemblyLoadContext::ContextualReflectionScope EnterContextualReflection(System::Reflection::Assembly ^ activating);
public static System.Runtime.Loader.AssemblyLoadContext.ContextualReflectionScope EnterContextualReflection (System.Reflection.Assembly? activating);
static member EnterContextualReflection : System.Reflection.Assembly -> System.Runtime.Loader.AssemblyLoadContext.ContextualReflectionScope
Public Shared Function EnterContextualReflection (activating As Assembly) As AssemblyLoadContext.ContextualReflectionScope
Parameter
- activating
- Assembly
Die Assembly, die zum Bestimmen der angeforderten AssemblyLoadContext-Instanz verwendet wird.
Gibt zurück
Ein Objekt zum Wiederherstellen des vorherigen Werts von CurrentContextualReflectionContext. Ist für die Verwendung als ein IDisposable in einem using
-Block vorgesehen.
Hinweise
Weitere Informationen finden Sie unter AssemblyLoadContext.CurrentContextualReflectionContext design doc in .NET Core.