Click or drag to resize

IDataChangedNotifier Interface

An object that can notify when data has arrived or changed.

Namespace: Demo3D.Net
Assembly: Demo3D.IO (in Demo3D.IO.dll) Version: 19.00.00
Syntax
C#
public interface IDataChangedNotifier : INotifyDataChanged

The IDataChangedNotifier type exposes the following members.

Properties
 NameDescription
Public propertyCanSubscribe Returns true if data changes can be subscribed to.
(Inherited from INotifyDataChanged)
Public propertyDataSubscribed Returns true if data changes are currently subscribed to.
(Inherited from INotifyDataChanged)
Top
Methods
 NameDescription
Public methodAddDataChanged Add a handler for the DataChanged event.
(Inherited from INotifyDataChanged)
Public methodNotifyDataChanged Notifies callers of a data change.
Public methodRemoveDataChanged Remove a handler from the DataChanged event.
(Inherited from INotifyDataChanged)
Top
Events
 NameDescription
Public eventDataChanged Occurs when data has arrived or changed.
(Inherited from INotifyDataChanged)
Top
Extension Methods
 NameDescription
Public Extension MethodCode exampleGetEventQueue Subscribes to data changed events and returns a NotifyDataChangedEventQueue.
(Defined by NotifyDataChanged)
Top
See Also