public GraphSettings(IGraphSettings otherSettings)
 {
     ProcessInternalLinks = otherSettings.ProcessInternalLinks;
 }
 public void Set(string graphName, IGraphSettings settings)
 {
     var s = GetSettings();
     s.GraphSettings[graphName] = new GraphSettings(settings); // So it can be saved properly with KVStore
     _keyValueStore.Set(SettingsKey, s);
 }
예제 #3
0
 private void OnCustomSettingsChanged(IGraphSettings customSettings) => GraphModel.CustomSettings = customSettings;