ObjectDataSourceView.ObjectDisposing Event

Definition

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

C#
public event System.Web.UI.WebControls.ObjectDataSourceDisposingEventHandler ObjectDisposing;

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

Proizvod Verzije
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also