DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="0.9.0-beta" />

 IGraphEditorHostApplication

public interface IGraphEditorHostApplication
This interface is implemented by the various host of GraphEditor to pass some configuration parameters as well as to receive some event notifications required by the host application to update itself.
using System.Collections.Generic; namespace Autodesk.DesignScript.Interfaces { public interface IGraphEditorHostApplication { Dictionary<string, object> Configurations { get; } void PostGraphUpdate(); void GraphActivated(uint graphId); } }