Version

OnInit Method (WebScheduleDataProviderBase)

Performs processing required when the control enters the Init stage of the ASP.NET page lifecycle.
Syntax
'Declaration
 
Protected Overrides Sub OnInit( _
   ByVal e As EventArgs _
) 
protected override void OnInit( 
   EventArgs e
)

Parameters

e
Event arguments.
Remarks

Inheritors may override the base class implementation of OnInit to perform their own processing during the Init stage of the ASP.NET page lifecycle which happens after initializing property values from the .ASPX document, but before the loading of viewstate (and potentially before the initialization of other elements on the page has completed). However, any overridden implementation of OnInit must call the base class implementation.

The base class implementation attempts to ensure that the WebScheduleInfo identified by WebScheduleInfoID exists and can be connected to this instance of a WebScheduleDataProviderBase. It may also perform additional processing.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also