ControlAdapter.OnInit(EventArgs) Method

Definition

Overrides the OnInit(EventArgs) method for the associated control.

C#
protected internal virtual void OnInit(EventArgs e);

Parameters

e
EventArgs

An EventArgs that contains the event data.

Examples

The following code sample derives a custom control adapter from the ControlAdapter class. It then overrides the OnInit method to set a property on the associated control and call the base method to complete the control initialization.

C#
using System;
using System.Web.UI;
using System.Web.UI.Adapters;

public class CustomControlAdapter : ControlAdapter
{
    // Override the ControlAdapter default OnInit implementation.
    protected override void OnInit (EventArgs e)
    {
        // Make the control invisible.
        Control.Visible = false;

        // Call the base method, which calls OnInit of the control,
        // which raises the control Init event.
        base.OnInit(e);
    }
}

Remarks

If there is an adapter attached to a Control object and the OnInit method is overridden, the override method is called instead of the Control.OnInit method.

Override OnInit to perform target-specific processing in the Initialize stage of the control lifecycle. Typically, these are functions that are performed when a control is created.

Notes to Inheritors

When you inherit from the ControlAdapter class and the adapter overrides the OnInit(EventArgs) method, the adapter must call the corresponding base class method, which in turn calls the OnInit(EventArgs) method. If the OnInit(EventArgs) method is not called, the Init event will not be raised.

Applies to

Product Versions
.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