Chili.Opf3 Send comments on this topic.
Updating Event
See Also 
Chili.Opf3 Namespace > ObjectContext Class : Updating Event




Event fired before an object is updated.

Syntax

Visual Basic (Declaration) 
Public Event Updating() As EventHandler(Of ObjectPersistingEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As ObjectContext
Dim handler As EventHandler(Of ObjectPersistingEventArgs)
 
AddHandler instance.Updating, handler
C# 
public event EventHandler<ObjectPersistingEventArgs> Updating()
Managed Extensions for C++ 
public: __event EventHandler<ObjectPersistingEventArgs>* Updating();
C++/CLI 
public:
event EventHandler<ObjectPersistingEventArgs>^ Updating();

Remarks

This event is fired before an object is updated in the storage. It may be used if you want to customize the IQuery for the operation.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also