PageParserFilter.AllowControl(Type, ControlBuilder) 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.
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
- 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.