|
ProcessProgressHandler<TUnit> .Complete Property
|
Gets or sets current process progress (i.e., number of units completed processing so far) - note that when this
property value is assigned, the callback function is automatically called with updated
ProcessProgress<TUnit>
instance so consumer can track progress.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.244-beta+cf93f5f8aea4b941e9b426fe4e180c2bd85d31a2
Syntaxpublic TUnit Complete { get; set; }
Public Property Complete As TUnit
Get
Set
public:
property TUnit Complete {
TUnit get ();
void set (TUnit value);
}
member Complete : 'TUnit with get, set
function get_Complete();
function set_Complete(value);
View SourceProperty Value
TUnitNumber of units completed processing so far.
See Also