ControlAdapter.OnInit(EventArgs) Method

Definition

Called after an object, such as a form or a page, is initialized. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 virtual void OnInit(EventArgs ^ e);
public virtual void OnInit (EventArgs e);
abstract member OnInit : EventArgs -> unit
override this.OnInit : EventArgs -> unit
Public Overridable Sub OnInit (e As EventArgs)

Parameters

e
EventArgs

An object (defined by EventArgs) that contains event data.

Implements

Remarks

You can override this method to set device-specific properties. Inheriting classes can override this method to perform other tasks. If this method is overridden in an inheriting class, you must call the base implementation.

Applies to

See also