ObjectDataSourceView.ObjectDisposing Event

Definition

Occurs when the ObjectDataSourceView object discards an instance of an object that it has created.

public:
 event System::Web::UI::WebControls::ObjectDataSourceDisposingEventHandler ^ ObjectDisposing;
public event System.Web.UI.WebControls.ObjectDataSourceDisposingEventHandler ObjectDisposing;
member this.ObjectDisposing : System.Web.UI.WebControls.ObjectDataSourceDisposingEventHandler 
Public Custom Event ObjectDisposing As ObjectDataSourceDisposingEventHandler 

Event Type

Remarks

The ObjectDisposing event is raised before the instance of the business object is discarded. If the business object implements the IDisposable interface, the Dispose method is called after The ObjectDisposing event is raised.

Handle the ObjectDisposing event to call other methods on the object and set properties or to perform clean-up that is specific to the object before the object is destroyed. A reference to the object is accessed by the ObjectInstance property, which is exposed by the ObjectDataSourceEventArgs object.

If the method that is identified to perform the data operation is static (Shared in Visual Basic), the ObjectDisposing event is never raised.

Applies to

See also