Interface ISettingsBundleAware
Interface used to communicate settings (as a settings bundle) to a component.
Namespace: Sdl.Core.Settings
Assembly: Sdl.Core.Settings.dll
Syntax
public interface ISettingsBundleAware
Remarks
Implementations may cast an object to this interface to determine if it support settings bundles, and then call SetSettingsBundle(ISettingsBundle) to pass settings to the object if it implements this interface.
Methods
SetSettingsBundle(ISettingsBundle)
Called by implementations to pass a settings bundle to the component.
Declaration
void SetSettingsBundle(ISettingsBundle settingsBundle)
Parameters
Type | Name | Description |
---|---|---|
ISettingsBundle | settingsBundle | the ISettingsBundle to use |