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




Event fired before an object is loaded. The persistent is populated after this event has been fired!

Syntax

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

Remarks

This event is fired before an object has been loaded from the storage. The persistent is populated after this event has been fired!

Requirements

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

See Also