How to get the settings, made in SettingsPanelPlugin area, in BackgroundPlugin?

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.

The Property plugin sample stores and reads properties in a very wide range plugin types. Please see that sample.

http://doc.developer.milestonesys.com/html/index.html?base=samples/property.html&tree=tree_1.html

Great, this was the missing point.

Many thanks.