 | LogicalNodeOnNodeProgressChanged method |
Triggers the NodeProgressChanged event.
Namespace: LogicalTaskTreeAssembly: LogicalTaskTree (in LogicalTaskTree.dll) Version: 1.0.0+df0404e911d6c38eaed3bb1bb1acfc482d417643
Syntaxprotected virtual void OnNodeProgressChanged(
string itemsName,
long countAll,
long countSucceeded
)
Protected Overridable Sub OnNodeProgressChanged (
itemsName As String,
countAll As Long,
countSucceeded As Long
)
protected:
virtual void OnNodeProgressChanged(
String^ itemsName,
long long countAll,
long long countSucceeded
)
abstract OnNodeProgressChanged :
itemsName : string *
countAll : int64 *
countSucceeded : int64 -> unit
override OnNodeProgressChanged :
itemsName : string *
countAll : int64 *
countSucceeded : int64 -> unit
Parameters
- itemsName String
- Name for the elements that are counted for the processing progress.
- countAll Int64
- Total number - corresponds to 100%.
- countSucceeded Int64
- Number achieved - less than or equal to 100%.
See also