AssemblyLoadContext.EnterContextualReflection Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
EnterContextualReflection() |
Define CurrentContextualReflectionContext para |
EnterContextualReflection(Assembly) |
Define CurrentContextualReflectionContext como o AssemblyLoadContext que carregou o assembly. |
EnterContextualReflection()
- Origem:
- AssemblyLoadContext.cs
- Origem:
- AssemblyLoadContext.cs
- Origem:
- AssemblyLoadContext.cs
Define CurrentContextualReflectionContext para this
AssemblyLoadContext.
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
Retornos
Um objeto para restaurar o valor anterior de CurrentContextualReflectionContext. Ele se destina a ser usado como um IDisposable em um bloco using
.
Comentários
Para obter mais informações, consulte AssemblyLoadContext.CurrentContextualReflectionContext design doc in .NET Core.
Aplica-se a
EnterContextualReflection(Assembly)
- Origem:
- AssemblyLoadContext.cs
- Origem:
- AssemblyLoadContext.cs
- Origem:
- AssemblyLoadContext.cs
Define CurrentContextualReflectionContext como o AssemblyLoadContext que carregou o assembly.
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
Parâmetros
- activating
- Assembly
O assembly que é usado para determinar a instância AssemblyLoadContext solicitada.
Retornos
Um objeto para restaurar o valor anterior de CurrentContextualReflectionContext. Ele se destina a ser usado como um IDisposable em um bloco using
.
Comentários
Para obter mais informações, consulte AssemblyLoadContext.CurrentContextualReflectionContext design doc in .NET Core.