Autodesk Vault ProfessionalVault API

ReportProgress(String,IEnumerable<ProgressValue>,Int32) Method

Autodesk.DataManagement.Client.Framework.InterfacesIProgressReporter

Reports progress to the GUI layer

Syntax

void ReportProgress(
   System.string header,
   System.Collections.Generic.IEnumerable<ProgressValue> progressValues,
   System.int percComplete
)
Overloads Sub ReportProgress( _
   ByVal header As System.String, _
   ByVal progressValues As System.Collections.Generic.IEnumerable(Of ProgressValue), _
   Optional ByVal percComplete As System.Integer _
) 

Parameters

NameDescription
headerThe header of the progress report. This should describe the current state of the operation, at a high level
progressValuesA list of values to display about the current state. This might include file names, file sizes, or other statistics
percCompleteThe % of the overall workflow that has been completed. If not specified, then no cumulative progress indicator will be displayed

Remarks

Since no Caption is specified, the existing caption of a progress dialog will remain unchanged

See Also