Share via


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

Definition

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

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

public static void SetCurrentInstanceProgress (bool isIndeterminate, int percentProgress, string? message, string? title);
static member SetCurrentInstanceProgress : bool * int * string * string -> unit
Public Shared Sub SetCurrentInstanceProgress (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