| BenchTaskForOne Delegate |
The type of a method, executing a Bench task for one Bench app.
Namespace:
Mastersign.Bench
Assembly:
BenchLib (in BenchLib.dll) Version: 0.22.0.0 (0.22.0.0)
Syntax public delegate ActionResult BenchTaskForOne(
IBenchManager man,
string appId,
Action<TaskInfo> notify,
Cancelation cancelation
)
Public Delegate Function BenchTaskForOne (
man As IBenchManager,
appId As String,
notify As Action(Of TaskInfo),
cancelation As Cancelation
) As ActionResult
Parameters
- man
- Type: Mastersign.BenchIBenchManager
The Bench manager. - appId
- Type: SystemString
The ID of the targeted app. - notify
- Type: SystemActionTaskInfo
The notification handler. - cancelation
- Type: Mastersign.BenchCancelation
A cancelation token.
Return Value
Type:
ActionResultThe result of the executed task in the shape of an
ActionResult object.
See Also