Partager via


PropertyForm.UpdateProgress Method (Int32, String)

 

Updates the progress of the commit operation.

Namespace:   Microsoft.WindowsServerSolutions.Properties
Assembly:  AdminCommon (in AdminCommon.dll)

Syntax

protected void UpdateProgress(
    int percentageComplete,
    string taskText
)
protected:
void UpdateProgress(
    int percentageComplete,
    String^ taskText
)
Protected Sub UpdateProgress (
    percentageComplete As Integer,
    taskText As String
)

Parameters

  • percentageComplete
    Type: System.Int32

    The percentage of the total work that has been completed.

  • taskText
    Type: System.String

    User-visible text that describes the task currently being executed.

Remarks

This method only takes effect when changes are being saved after the user clicks OK or Apply. Derived classes do not need to make this call from the user interface thread.

See Also

PropertyForm Class
Microsoft.WindowsServerSolutions.Properties Namespace

Return to top