UpdatePanel.CreateControlCollection Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the collection of all controls contained in the UpdatePanel control.
protected:
override System::Web::UI::ControlCollection ^ CreateControlCollection();
protected override sealed System.Web.UI.ControlCollection CreateControlCollection ();
override this.CreateControlCollection : unit -> System.Web.UI.ControlCollection
Protected Overrides NotOverridable Function CreateControlCollection () As ControlCollection
Returns
A ControlCollection object that consists of all controls that define the content of the UpdatePanel control.
Remarks
The CreateControlCollection method is used by control developers.
Because this method is protected and sealed, it is visible to classes that inherit from the UpdatePanel class, but it cannot be overridden. This method overrides the base implementation to return a specialized ControlCollection object that throws an InvalidOperationException when the Add, AddAt, Clear, Remove, or RemoveAt method of the ControlCollection class is invoked. To change the content of the UpdatePanel control, modify the child controls of the ContentTemplateContainer property.