Click or drag to resize
IConfigurationListener Interface
The interface for a class that can listen to a Configuration object and raise a single event when one of its properties (or the properties of a child object) are changed.

Namespace: VirtualRadar.Interface.Settings
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IConfigurationListener : IDisposable

The IConfigurationListener type exposes the following members.

Methods
  NameDescription
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodInitialise
Starts observing a configuration for changes.
Public methodRelease
Stops observing a configuration for changes.
Top
Events
  NameDescription
Public eventPropertyChanged
Raised when a configuration value changes.
Top
Remarks
Note that at the time of writing there is no one singleton instance of Configuration that you can listen to. This is currently only really of interest to GUI objects that want to observe a configuration as it is changed by the user.
See Also