Table of Contents

Class SetResolvedNavigationTargetAction

Namespace
NMF.Glsp.Protocol.Navigation
Assembly
NMF.Glsp.dll

An action sent from the server in response to a ResolveNavigationTargetAction. The response contains the resolved element ids for the given target and may contain additional information in the args property.

public class SetResolvedNavigationTargetAction : ResponseAction
Inheritance
SetResolvedNavigationTargetAction
Inherited Members

Fields

SetResolvedNavigationTargetActionKind

The kind value used for this kind of action

public const string SetResolvedNavigationTargetActionKind = "setResolvedNavigationTarget"

Field Value

string

Properties

Args

Custom arguments that may be interpreted by the client.

public IDictionary<string, object> Args { get; init; }

Property Value

IDictionary<string, object>

ElementIds

The element ids of the resolved navigation target.

public string[] ElementIds { get; set; }

Property Value

string[]

Kind

Unique identifier specifying the kind of action to process.

public override string Kind { get; }

Property Value

string