Class SetMarkersAction
- Namespace
- NMF.Glsp.Protocol.Validation
- Assembly
- NMF.Glsp.dll
Response to the RequestMarkersAction containing all validation markers. Sent from the server to the client. This action always sends the entire list of markers. Thus, clients can replace all markers for a specific reason with the new ones that have been sent with the same reason.
public class SetMarkersAction : BaseAction
- Inheritance
-
SetMarkersAction
- Inherited Members
Fields
SetMarkersActionKind
The kind value used for this kind of action
public const string SetMarkersActionKind = "setMarkers"
Field Value
Properties
Kind
Unique identifier specifying the kind of action to process.
public override string Kind { get; }
Property Value
Markers
The list of markers to be set in the diagram editor.
public Marker[] Markers { get; init; }
Property Value
- Marker[]
Reason
The reason for this response, e.g. a batch
validation or a live
validation.
public string Reason { get; init; }