System.Web.UI.Page.OnInitComplete C# (CSharp) Méthode

OnInitComplete() protected méthode

protected OnInitComplete ( EventArgs e ) : void
e System.EventArgs
Résultat void
	protected virtual void OnInitComplete (EventArgs e)
	{
		if ((event_mask & initcomplete_mask) != 0) {
			EventHandler eh = (EventHandler) (Events [InitCompleteEvent]);
			if (eh != null) eh (this, e);
		}
	}
	
Page