Class SetNavigationTargetsAction
- Namespace
- NMF.Glsp.Protocol.Navigation
- Assembly
- NMF.Glsp.dll
Response action from the server following a RequestNavigationTargetsAction. It contains all available navigation targets for the queried target type in the provided editor context. The server may also provide additional information using the arguments, e.g., warnings, that can be interpreted by the client.
public class SetNavigationTargetsAction : ResponseAction
- Inheritance
-
SetNavigationTargetsAction
- Inherited Members
Fields
SetNavigationTargetsActionKind
The kind value used for this kind of action
public const string SetNavigationTargetsActionKind = "setNavigationTargets"
Field Value
Properties
Args
Custom arguments that may be interpreted by the client.
public IDictionary<string, object> Args { get; init; }
Property Value
Kind
Unique identifier specifying the kind of action to process.
public override string Kind { get; }
Property Value
Targets
A list of navigation targets.
public NavigationTarget[] Targets { get; init; }