PageParserFilter.AllowControl(Type, ControlBuilder) 方法

定义

获取一个值,该值指示此页是否允许包含指定的控件类型。

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

参数

controlType
Type

表示要添加的控件类型的 Type

builder
ControlBuilder

用于生成指定的控件类型的 ControlBuilder

返回

Boolean

如果控件可用于当前页,则为 true;否则为 false。 默认值是 false

注解

TemplateParser 检查是否允许在分析时在页面中访问控件。 重写方法 AllowControl 以拒绝或允许页面中的特定控件。

适用于