ObjectDataSourceView.OnObjectCreated(ObjectDataSourceEventArgs) Method

Definition

Raises the ObjectCreated event after the ObjectDataSourceView creates an instance of the object that is identified by the TypeName property.

protected:
 virtual void OnObjectCreated(System::Web::UI::WebControls::ObjectDataSourceEventArgs ^ e);
protected virtual void OnObjectCreated (System.Web.UI.WebControls.ObjectDataSourceEventArgs e);
abstract member OnObjectCreated : System.Web.UI.WebControls.ObjectDataSourceEventArgs -> unit
override this.OnObjectCreated : System.Web.UI.WebControls.ObjectDataSourceEventArgs -> unit
Protected Overridable Sub OnObjectCreated (e As ObjectDataSourceEventArgs)

Parameters

e
ObjectDataSourceEventArgs

An ObjectDataSourceEventArgs that contains the event data.

Remarks

The OnObjectCreated method is called, only if the method that is identified to perform the data operation is not static (Shared in Visual Basic).

Raising an event invokes the event handler through a delegate. For more information, see ObjectCreating.

The OnObjectCreated method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors

When overriding the OnObjectCreated(ObjectDataSourceEventArgs) method in a derived class, be sure to call the OnObjectCreated(ObjectDataSourceEventArgs) method for the base class so that registered delegates receive the event.

Applies to

See also