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