Table of Contents

Class RejectAction

Namespace
NMF.Glsp.Protocol.BaseProtocol
Assembly
NMF.Glsp.dll

A reject action is a response fired to indicate that a request must be rejected.

public class RejectAction : ResponseAction
Inheritance
RejectAction
Inherited Members

Fields

RejectActionKind

The kind value used for this kind of action

public const string RejectActionKind = "rejectRequest"

Field Value

string

Properties

Detail

Optional additional details.

public object Detail { get; init; }

Property Value

object

Kind

Unique identifier specifying the kind of action to process.

public override string Kind { get; }

Property Value

string

Message

A human-readable description of the reject reason. Typically this is an error message that has been thrown when handling the corresponding RequestAction.

public string Message { get; init; }

Property Value

string