SoftMultiTaskTMultiInfoTwo 委托 |
用于报告进度的委托,当finish等于count时,任务完成
命名空间:
HslCommunication.Core
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public delegate void MultiInfoTwo(
int finish,
int count,
int success,
int failed
)
Public Delegate Sub MultiInfoTwo (
finish As Integer,
count As Integer,
success As Integer,
failed As Integer
)
public delegate void MultiInfoTwo(
int finish,
int count,
int success,
int failed
)
type MultiInfoTwo =
delegate of
finish : int *
count : int *
success : int *
failed : int -> unit
参数
- finish
- 类型:SystemInt32
已完成操作数量 - count
- 类型:SystemInt32
总数量 - success
- 类型:SystemInt32
成功数量 - failed
- 类型:SystemInt32
失败数量
参见