LiteralControlBuilder.AppendSubBuilder(ControlBuilder) Method

Definition

Throws HttpException, because adding child control builders does not apply to the Literal control.

public:
 override void AppendSubBuilder(System::Web::UI::ControlBuilder ^ subBuilder);
public override void AppendSubBuilder (System.Web.UI.ControlBuilder subBuilder);
override this.AppendSubBuilder : System.Web.UI.ControlBuilder -> unit
Public Overrides Sub AppendSubBuilder (subBuilder As ControlBuilder)

Parameters

subBuilder
ControlBuilder

The ControlBuilder object to add the child control builders to.

Exceptions

An attempt is made to use this method.

Remarks

In the ControlBuilder base class, this method adds the builders of all child controls associated with the Literal control to the specified System.Web.UI.ControlBuilder object. This method is inherited from the System.Web.UI.ControlBuilder class and is not applicable to the LiteralControlBuilder. In the overridden implementation in LiteralControlBuilder, the method always throws HttpException.

Applies to

See also