 | SingleNodeOnNodeProgressFinished method |
Triggers the NodeProgressFinished event.
Namespace: LogicalTaskTreeAssembly: LogicalTaskTree (in LogicalTaskTree.dll) Version: 1.0.0+df0404e911d6c38eaed3bb1bb1acfc482d417643
Syntaxpublic override void OnNodeProgressFinished(
string itemsName,
long countAll,
long countSucceeded
)
Public Overrides Sub OnNodeProgressFinished (
itemsName As String,
countAll As Long,
countSucceeded As Long
)
public:
virtual void OnNodeProgressFinished(
String^ itemsName,
long long countAll,
long long countSucceeded
) override
abstract OnNodeProgressFinished :
itemsName : string *
countAll : int64 *
countSucceeded : int64 -> unit
override OnNodeProgressFinished :
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