ExecutionContext.Run(ExecutionContext, ContextCallback, Object) 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.
Executa um método em um contexto de execução especificado no thread atual.
public:
static void Run(System::Threading::ExecutionContext ^ executionContext, System::Threading::ContextCallback ^ callback, System::Object ^ state);
[System.Security.SecurityCritical]
public static void Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state);
public static void Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object? state);
public static void Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state);
[<System.Security.SecurityCritical>]
static member Run : System.Threading.ExecutionContext * System.Threading.ContextCallback * obj -> unit
static member Run : System.Threading.ExecutionContext * System.Threading.ContextCallback * obj -> unit
Public Shared Sub Run (executionContext As ExecutionContext, callback As ContextCallback, state As Object)
Parâmetros
- executionContext
- ExecutionContext
ExecutionContext ao dataset.
- callback
- ContextCallback
Um ContextCallback delegado que representa o método a ser executado no contexto de execução fornecido.
- state
- Object
O objeto a passar para o método de retorno de chamada.
- Atributos
Exceções
executionContext
é null
.
- ou -
executionContext
não foi adquirido por meio de uma operação de captura.
- ou -
executionContext
já foi usado como argumento para uma chamada Run(ExecutionContext, ContextCallback, Object) .
Comentários
O contexto de execução e os contextos de sincronização do thread de chamada são retornados para seus estados anteriores quando o método for concluído.