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.SettingsAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public interface IConfigurationListener : IDisposable
Public Interface IConfigurationListener
Inherits IDisposable
public interface class IConfigurationListener : IDisposable
type IConfigurationListener =
interface
interface IDisposable
end
The IConfigurationListener type exposes the following members.
Methods
| Name | Description |
---|
| Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) |
| Initialise |
Starts observing a configuration for changes.
|
| Release |
Stops observing a configuration for changes.
|
TopEvents 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