NotifyDataChangedEventHandler Delegate |
Represents the method that handles INotifyDataChanged.DataChanged events.
Namespace:
Demo3D.Net
Assembly:
Demo3D.IO (in Demo3D.IO.dll) Version: 10.0.0.0 (10.0.0.0)
Syntaxpublic delegate void NotifyDataChangedEventHandler(
ProtocolSocket socket,
Object service,
NotifyDataChangedEventArgs e
)
Parameters
- socket
- Type: Demo3D.NetProtocolSocket
The protocol socket that raised the event. - service
- Type: SystemObject
The service that raised the event. - e
- Type: Demo3D.NetNotifyDataChangedEventArgs
Information about the event.
Remarks
The actual e object passed is normally a class derived from NotifyDataChangedEventArgs,
and will normally contain more information about the data. See the documentation for the service raising the event.
See Also