Share via


DkmWorkList.SetProgress(Boolean, Int32, String, String) Method

Definition

Sets the progress that will be reported for the worklist. Progress reporting is not supported in remoting scenarios.

This API was introduced in Visual Studio 17 Update 6 (DkmApiVersion.VS17Update6).

public void SetProgress (bool isIndeterminate, int percentProgress, string? message, string? title);
member this.SetProgress : bool * int * string * string -> unit
Public Sub SetProgress (isIndeterminate As Boolean, percentProgress As Integer, message As String, title As String)

Parameters

isIndeterminate
Boolean

Indicates whether or not the progress of the operation is known.

percentProgress
Int32

Percentage completion of the operation. If the 'isIndeterminate' parameter is 'true', this value can be ignored.

message
String

Message associated with the progress update. If null, the previous message should be used (if any).

title
String

Title associated with the operation. If null, the previous title should be used (if any).

Applies to