ISettingsManager3 Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Allows read/write access to settings values and subscription to changes. Obtain this using SettingsManager.
public interface class ISettingsManager3
public interface ISettingsManager3
type ISettingsManager3 = interface
Public Interface ISettingsManager3
Methods
GetSettingInfoAsync(String, CancellationToken) |
Returns the metadata for a setting. If the named setting is not registered (registration is optional), the return value will express the default metadata for settings without registration. |
GetSettingInfosAsync(String, Int32, Int32, CancellationToken) |
Gets the metadata for all the registered settings starting with |
GetSettingMonikersAsync(String, Int32, Int32, CancellationToken) |
Gets all the registered setting monikers starting with |
GetValueAsync(String, CancellationToken) |
Gets the value of a setting. |
RequestChangeEventsAsync(String, CancellationToken) |
Enables change events to be raised for settings matching |
SetValueAsync(String, Object, CancellationToken) |
Changes the value of a setting. |
Events
SettingChanged |
Raised when a setting has changed for settings whose name matches a pattern passed to RequestChangeEventsAsync(String, CancellationToken). |