Table of Contents

Class UpdateProgressAction

Namespace
NMF.Glsp.Protocol.Notification
Assembly
NMF.Glsp.dll

This action is sent by the server to the client to presenting an update of the progress of a long running process in the UI.

public class UpdateProgressAction : BaseAction
Inheritance
UpdateProgressAction
Inherited Members

Fields

UpdateProgressActionKind

The kind value used for this kind of action

public const string UpdateProgressActionKind = "updateProgress"

Field Value

string

Properties

Kind

Unique identifier specifying the kind of action to process.

public override string Kind { get; }

Property Value

string

Message

The message to show in the progress reporting.

public string Message { get; set; }

Property Value

string

Percentage

The percentage (value range: 0 to 100) to show in the progress reporting.

public double? Percentage { get; set; }

Property Value

double?

ProgressId

The ID of the progress reporting to update.

public string ProgressId { get; set; }

Property Value

string