Status.ReportProgress Method (Int32, Int32, String)

 

Namespace:   Microsoft.ManagementConsole
Assembly:  Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)

Syntax

public void ReportProgress(
    int workProcessed,
    int totalWork,
    string statusText
)
public:
void ReportProgress(
    int workProcessed,
    int totalWork,
    String^ statusText
)
member ReportProgress : 
        workProcessed:int *
        totalWork:int *
        statusText:string -> unit
Public Sub ReportProgress (
    workProcessed As Integer,
    totalWork As Integer,
    statusText As String
)

Parameters

  • workProcessed
    Type: System.Int32

    Reports the status of the request to the MMC run-time.

  • totalWork
    Type: System.Int32

    The total work to be done before the operation can complete.

See Also

Status Class
Microsoft.ManagementConsole Namespace

Return to top