Occurs when at least one item of type TConfigurationObject is removed.

Namespace: ININ.IceLib.Configuration
Assembly: ININ.IceLib.Configuration (in ININ.IceLib.Configuration.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public event EventHandler<ConfigurationWatchEventArgs<TConfigurationObject>> ConfigurationObjectsRemoved
Visual Basic
Public Event ConfigurationObjectsRemoved As EventHandler(Of ConfigurationWatchEventArgs(Of TConfigurationObject))

Remarks

This event will only occur when configuration objects being watched have been removed. To start watching for configuration objects call either the StartWatching()()()() method or the StartWatchingAsync(AsyncCompletedEventHandler, Object) method. To modify which attributes are being watched once the watch has been started, use the ChangeWatchQuerySettings(QuerySettings<(Of <<'(TConfigurationObject, TPropertyEnum>)>>)) method. The ConfigurationId property is the only property that will be available on this object.
Note
All event handlers should be added before calling StartWatching()()()() or StartWatchingAsync(AsyncCompletedEventHandler, Object).
Note
For more information on watches see How Watches Work.

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.

See Also