Documentation de Dvp.NET. Forum : http://www.developpez.net/forums/f1239/applications/projets/projets-heberges/dvp-net/
Assembly : Developpez.Dotnet (dans Developpez.Dotnet.dll) Version: 0.6.0.0 (0.6.0.0)
[Ceci est une documentation préliminaire, sous réserve de modification.]
Exécute un délégué de manière asynchrone
Espace de nom : Developpez.Dotnet.ThreadingAssembly : Developpez.Dotnet (dans Developpez.Dotnet.dll) Version: 0.6.0.0 (0.6.0.0)
Syntaxe
C# |
---|
public static void ExecuteAsync( ThreadStart method, string description, EventHandler onFinish ) |
Visual Basic (Déclaration) |
---|
Public Shared Sub ExecuteAsync ( _ method As ThreadStart, _ description As String, _ onFinish As EventHandler _ ) |
Visual C++ |
---|
public: static void ExecuteAsync( ThreadStart^ method, String^ description, EventHandler^ onFinish ) |
Paramètres
- method
- Type: System.Threading..::..ThreadStart
Délégué à exécuter
- description
- Type: System..::..String
Description du thread crée (si un thread est crée)
- onFinish
- Type: System..::..EventHandler
Evènement à appeler lorsque l'opération est terminée
Remarques
onFinish peut être null cependant si onFinish est différent de null il est exécuté
sur le thread ayant exécuté le travail, pas sur le thread appelant