Table of Contents

Class RequestExportSvgAction

Namespace
NMF.Glsp.Protocol.ModelData
Assembly
NMF.Glsp.dll

A RequestExportSvgAction is sent by the client (or the server) to initiate the SVG export of the current diagram. The handler of this action is expected to retrieve the diagram SVG and should send an ExportSvgAction as response. Typically the ExportSvgAction is handled directly on client side.

public class RequestExportSvgAction : RequestAction
Inheritance
RequestExportSvgAction
Inherited Members

Fields

RequestExportSvgActionKind

The kind value used for this kind of action

public const string RequestExportSvgActionKind = "requestExportsvg"

Field Value

string

Properties

Kind

Unique identifier specifying the kind of action to process.

public override string Kind { get; }

Property Value

string

Methods

ExecuteAsync(IGlspSession)

Executes the action in the context of the given session

public override Task ExecuteAsync(IGlspSession session)

Parameters

session IGlspSession

The session in which to execute the action

Returns

Task