ObjectDataSourceView.OnInserting(ObjectDataSourceMethodEventArgs) 方法

定义

Inserting 对象尝试执行插入操作之前引发 ObjectDataSourceView 事件。

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

参数

注解

OnObjectCreating仅当标识为执行数据操作的方法未static在 Visual Basic) 中 (Shared时,才调用 该方法。

引发事件时,将通过委托调用事件处理程序。 有关如何处理事件的详细信息,请参阅 处理和引发事件

OnInserting 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

继承者说明

在派生类中重写 OnInserting(ObjectDataSourceMethodEventArgs) 方法时,请务必为基类调用 OnInserting(ObjectDataSourceMethodEventArgs) 方法,以便注册的委托接收事件。

适用于

另请参阅