PublicOrleansTaskExtensions.Ignore(Task) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Observe et ignore une exception potentielle sur une tâche donnée. Si une tâche échoue et lève une exception qui n’est jamais observée, elle est interceptée par le thread de finaliseur .NET. Cette fonction attend la tâche donnée et, si l’exception est levée, elle observe cette exception et l’ignore simplement. Cela empêchera l’escalade de cette exception vers le thread de finaliseur .NET.
public static void Ignore (this System.Threading.Tasks.Task task);
static member Ignore : System.Threading.Tasks.Task -> unit
<Extension()>
Public Sub Ignore (task As Task)
Paramètres
- task
- Task
Tâche à ignorer.