ExecutionContext.Run(ExecutionContext, ContextCallback, Object) Método

Definición

Ejecuta un método en un contexto de ejecución especificado en el subproceso actual.

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

Objeto ExecutionContext que se va a establecer.

callback
ContextCallback

Delegado ContextCallback que representa el método que se va a ejecutar en el contexto de ejecución proporcionado.

state
Object

Objeto que se pasa al método de devolución de llamada.

Atributos

Excepciones

El valor de executionContext es null.

O bien executionContext no se adquirió a través de una operación de captura.

O bien executionContext ya se ha utilizado como argumento de una llamada a Run(ExecutionContext, ContextCallback, Object).

Comentarios

El contexto de ejecución y los contextos de sincronización del subproceso de llamada se devuelven a sus estados anteriores cuando se completa el método.

Se aplica a