Documentation de Dvp.Net. Forum : http://www.developpez.net/forums/f1239/applications/projets/projets-heberges/dvp-net/

[Ceci est une documentation préliminaire, sous réserve de modification.]

Callback appelé pour effectuer les actions sur le type générique des arguments

Namespace:  Developpez.Dotnet.Threading
Assembly:  Developpez.Dotnet (in Developpez.Dotnet.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public delegate void CallBackMethod(
	ThreadedWorker<T> caller,
	T currentObject
)
Visual Basic (Declaration)
Public Delegate Sub CallBackMethod ( _
	caller As ThreadedWorker(Of T), _
	currentObject As T _
)
Visual C++
public delegate void CallBackMethod(
	ThreadedWorker<T>^ caller, 
	T currentObject
)

Parameters

caller
Type: Developpez.Dotnet.Threading..::.ThreadedWorker<(Of <(T>)>)
Objet TreadWorker ayant effectué l'appel"/>
currentObject
Type: T
Objet de travail actuel

See Also