43 instantiations of ControlBuilderAttribute
System.Web (30)
UI\ControlBuilderAttribute.cs (1)
28public static readonly ControlBuilderAttribute Default = new ControlBuilderAttribute(null);
UI\DataSourceControl.cs (1)
33ControlBuilder(typeof(DataSourceControlBuilder)),
UI\HierarchicalDataSourceControl.cs (1)
14ControlBuilder(typeof(DataSourceControlBuilder)),
UI\HtmlControls\HtmlArea.cs (1)
12[ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))]
UI\HtmlControls\HtmlHead.cs (1)
44ControlBuilderAttribute(typeof(HtmlHeadBuilder))
UI\HtmlControls\HtmlImage.cs (1)
32ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))
UI\HtmlControls\HtmlInputControl.cs (1)
35ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))
UI\HtmlControls\HtmlLink.cs (1)
14ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))
UI\HtmlControls\HtmlMeta.cs (1)
15ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))
UI\HtmlControls\HtmlSelect.cs (1)
51ControlBuilderAttribute(typeof(HtmlSelectBuilder)),
UI\HtmlControls\HtmlSource.cs (1)
22ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))
UI\HtmlControls\HtmlTrack.cs (1)
22ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder))
UI\MasterPage.cs (1)
52ControlBuilder(typeof(MasterPageControlBuilder)),
UI\ObjectTag.cs (1)
29ControlBuilderAttribute(typeof(ObjectTagBuilder))
UI\UserControl.cs (1)
78ControlBuilder(typeof(UserControlControlBuilder)),
UI\WebControls\Content.cs (1)
138ControlBuilderAttribute(typeof(ContentBuilderInternal)),
UI\WebControls\ContentPlaceHolder.cs (1)
100[ControlBuilderAttribute(typeof(ContentPlaceHolderBuilder))]
UI\WebControls\HyperLink.cs (1)
37ControlBuilderAttribute(typeof(HyperLinkControlBuilder)),
UI\WebControls\Label.cs (1)
39ControlBuilderAttribute(typeof(LabelControlBuilder)),
UI\WebControls\LinkButton.cs (1)
37ControlBuilderAttribute(typeof(LinkButtonControlBuilder)),
UI\WebControls\listitem.cs (1)
43ControlBuilderAttribute(typeof(ListItemControlBuilder)),
UI\WebControls\Literal.cs (1)
48ControlBuilderAttribute(typeof(LiteralControlBuilder)),
UI\WebControls\MultiView.cs (1)
19ControlBuilder(typeof(MultiViewControlBuilder)),
UI\WebControls\PlaceHolder.cs (1)
36ControlBuilderAttribute(typeof(PlaceHolderControlBuilder))
UI\WebControls\TableCell.cs (1)
40ControlBuilderAttribute(typeof(TableCellControlBuilder)),
UI\WebControls\TemplatedWizardStep.cs (1)
17ControlBuilderAttribute(typeof(WizardStepControlBuilder)),
UI\WebControls\TextBox.cs (1)
48ControlBuilderAttribute(typeof(TextBoxControlBuilder)),
UI\WebControls\WizardStep.cs (1)
17ControlBuilderAttribute(typeof(WizardStepControlBuilder)),
UI\WebControls\WizardStepBase.cs (1)
33ControlBuilderAttribute(typeof(WizardStepControlBuilder)),
UI\WebControls\xml.cs (1)
92ControlBuilderAttribute(typeof(XmlBuilder)),
System.Web.Mobile (13)
UI\MobileControls\DeviceSpecific.cs (1)
30ControlBuilderAttribute(typeof(DeviceSpecificControlBuilder)),
UI\MobileControls\DeviceSpecificChoice.cs (2)
30ControlBuilderAttribute(typeof(DeviceSpecificChoiceControlBuilder)), 567ControlBuilderAttribute(typeof(DeviceSpecificChoiceTemplateBuilder))
UI\MobileControls\Form.cs (1)
19ControlBuilderAttribute(typeof(FormControlBuilder)),
UI\MobileControls\List.cs (1)
30ControlBuilderAttribute(typeof(ListControlBuilder)),
UI\MobileControls\LiteralText.cs (1)
27ControlBuilderAttribute(typeof(LiteralTextControlBuilder)),
UI\MobileControls\MobileControl.cs (1)
37ControlBuilderAttribute(typeof(MobileControlBuilder)),
UI\MobileControls\ObjectList.cs (1)
29ControlBuilderAttribute(typeof(ObjectListControlBuilder)),
UI\MobileControls\Panel.cs (1)
17ControlBuilderAttribute(typeof(PanelControlBuilder)),
UI\MobileControls\SelectionList.cs (1)
30ControlBuilderAttribute(typeof(ListControlBuilder)),
UI\MobileControls\Style.cs (1)
33ControlBuilderAttribute(typeof(MobileControlBuilder)),
UI\MobileControls\StyleSheet.cs (1)
33ControlBuilderAttribute(typeof(StyleSheetControlBuilder)),
UI\MobileControls\TextBox.cs (1)
29ControlBuilderAttribute(typeof(TextBoxControlBuilder)),
10 references to ControlBuilderAttribute
System.Web (10)
UI\ControlBuilder.cs (6)
1680ControlBuilderAttribute cba = GetControlBuilderAttribute(type); 1712private static ControlBuilderAttribute GetControlBuilderAttribute(Type controlType) { 1714ControlBuilderAttribute cba = null; 1715object[] attrs = TargetFrameworkUtil.GetCustomAttributes(controlType, typeof(ControlBuilderAttribute), /*inherit*/ true); 1718Debug.Assert(attrs[0] is ControlBuilderAttribute); 1719cba = (ControlBuilderAttribute)attrs[0];
UI\ControlBuilderAttribute.cs (4)
25/// <para>The default <see cref='System.Web.UI.ControlBuilderAttribute'/> object is a 28public static readonly ControlBuilderAttribute Default = new ControlBuilderAttribute(null); 70if ((obj != null) && (obj is ControlBuilderAttribute)) { 71return((ControlBuilderAttribute)obj).BuilderType == builderType;