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




Event fired after an object is marked for deletion.

Syntax

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

Remarks

This event is fired before an object is marked for deletion in the storage.

Requirements

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

See Also