I have some settings made in SettingsPanelPlugin and stored with “SaveProperties” in SettingsPanelPlugin:
public override bool TrySaveChanges(out string errorMessage)
{
SaveProperties(false);
errorMessage = string.Empty;
return true;
}
How to get this stored settings in the BackgroundPlugin?
The BackgroundPlugin is running on the SmartClient not on the Event-Server.