Interface ISettingsAware
This interface should be implemented by components which need to be aware of a particular settings group in order to read their settings from this group (during extraction or generation).
Namespace: Sdl.FileTypeSupport.Framework.IntegrationApi
Assembly: Sdl.FileTypeSupport.Framework.Core.dll
Syntax
public interface ISettingsAware
Methods
InitializeSettings(ISettingsBundle, String)
Provides the component with the settings information it needs to initialize its settings.
Declaration
void InitializeSettings(ISettingsBundle settingsBundle, string configurationId)
Parameters
Type | Name | Description |
---|---|---|
ISettingsBundle | settingsBundle | Used for setting the settings bundle on the component. |
System.String | configurationId | The suggested configuration ID to use when retrieving the
settings group from the ISettingsBundle and directly relates to the settings group ID.
This does not have to be used if a component needs to self-manage its configuration ID and may be
|