Occurs when changes are being saved to the Brightstar store

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
EventHandler<DataObjectStoreChangeEventArgs> SavingChanges { get; set; }
Visual Basic
Property SavingChanges As EventHandler(Of DataObjectStoreChangeEventArgs)
	Get
	Set
Visual C++
property EventHandler<DataObjectStoreChangeEventArgs^>^ SavingChanges {
	EventHandler<DataObjectStoreChangeEventArgs^>^ get ();
	void set (EventHandler<DataObjectStoreChangeEventArgs^>^ value);
}
F#
abstract SavingChanges : EventHandler<DataObjectStoreChangeEventArgs> with get, set

Property Value

Type: EventHandler<(Of <(<'DataObjectStoreChangeEventArgs>)>)>

Remarks

The SavingChanges event is raised before changes are saved to the Brightstar store as a result of calling the SaveChanges()()()() method.

See Also