PageParserFilter.AllowControl(Type, ControlBuilder) Method

Definition

Gets a value indicating whether the specified control type is allowed for this page.

public:
 virtual bool AllowControl(Type ^ controlType, System::Web::UI::ControlBuilder ^ builder);
public virtual bool AllowControl (Type controlType, System.Web.UI.ControlBuilder builder);
abstract member AllowControl : Type * System.Web.UI.ControlBuilder -> bool
override this.AllowControl : Type * System.Web.UI.ControlBuilder -> bool
Public Overridable Function AllowControl (controlType As Type, builder As ControlBuilder) As Boolean

Parameters

controlType
Type

A Type that represents the type of control to add.

builder
ControlBuilder

A ControlBuilder used to build the specified type of control.

Returns

true if the control can be used with the current page; otherwise, false. The default value is false.

Remarks

The TemplateParser class checks to see whether controls are permitted in a page at parse time. Override the AllowControl method to reject or permit specific controls in your pages.

Applies to