58 instantiations of ParseChildren
System.Web (38)
UI\ControlBuilder.cs (1)
1975
private static ParseChildrenAttribute s_markerParseChildrenAttribute = new
ParseChildrenAttribute
();
UI\HtmlControls\HtmlTable.cs (1)
26
ParseChildren
(true, "Rows")
UI\HtmlControls\HtmlTableRow.cs (1)
26
ParseChildren
(true, "Cells")
UI\MasterPage.cs (1)
53
ParseChildren
(false)
UI\ParseChildrenAsPropertiesAttribute.cs (2)
25
public static readonly ParseChildrenAttribute ParseAsChildren = new
ParseChildrenAttribute
(false, false);
28
public static readonly ParseChildrenAttribute ParseAsProperties = new
ParseChildrenAttribute
(true, false);
UI\UserControl.cs (1)
84
ParseChildren
(true),
UI\WebControls\HiddenField.cs (1)
21
ParseChildren
(true),
UI\WebControls\HyperLink.cs (1)
42
ParseChildren
(false)
UI\WebControls\ImageMap.cs (1)
23
ParseChildren
(true, "HotSpots"),
UI\WebControls\Label.cs (1)
43
ParseChildren
(false),
UI\WebControls\LinkButton.cs (1)
43
ParseChildren
(false),
UI\WebControls\ListControl.cs (1)
29
ParseChildren
(true, "Items"),
UI\WebControls\listitem.cs (1)
45
ParseChildren
(true, "Text"),
UI\WebControls\LoginView.cs (1)
23
ParseChildren
(true),
UI\WebControls\MailDefinition.cs (1)
30
ParseChildren
(true, "")
UI\WebControls\MenuItem.cs (1)
24
[
ParseChildren
(true, "ChildItems")]
UI\WebControls\ModelErrorMessage.cs (1)
20
ParseChildren
(true),
UI\WebControls\MultiView.cs (1)
22
ParseChildren
(typeof(View))
UI\WebControls\ObjectDataSource.cs (1)
30
ParseChildren
(true),
UI\WebControls\Panel.cs (1)
23
ParseChildren
(false),
UI\WebControls\Repeater.cs (1)
23
ParseChildren
(true),
UI\WebControls\SiteMapDataSource.cs (1)
20
ParseChildren
(true),
UI\WebControls\SqlDataSource.cs (1)
36
ParseChildren
(true),
UI\WebControls\Substitution.cs (1)
23
ParseChildren
(true),
UI\WebControls\Table.cs (1)
22
ParseChildren
(true, "Rows"),
UI\WebControls\TableCell.cs (1)
42
ParseChildren
(false),
UI\WebControls\TableRow.cs (1)
23
ParseChildren
(true, "Cells"),
UI\WebControls\TemplatedWizardStep.cs (1)
18
ParseChildren
(true),
UI\WebControls\TextBox.cs (1)
55
ParseChildren
(true, "Text"),
UI\WebControls\TreeNode.cs (1)
24
[
ParseChildren
(true, "ChildNodes")]
UI\WebControls\View.cs (1)
14
[
ParseChildren
(false)]
UI\WebControls\WebControl.cs (1)
26
ParseChildren
(true),
UI\WebControls\XmlDataSource.cs (1)
37
ParseChildren
(true),
UI\WebParts\Part.cs (1)
20
ParseChildren
(true),
UI\WebParts\ProxyWebPartManager.cs (1)
18
ParseChildren
(true),
UI\WebParts\WebPartConnection.cs (1)
16
ParseChildren
(true, "Transformers")
UI\WebParts\WebPartManager.cs (1)
32
ParseChildren
(true),
System.Web.DynamicData (4)
DynamicData\DynamicDataManager.cs (1)
23
[
ParseChildren
(true)]
DynamicData\EntityTemplate.cs (1)
6
[
ParseChildren
(true)]
DynamicData\FilterRepeater.cs (1)
19
[
ParseChildren
(true)]
DynamicData\QueryableFilterRepeater.cs (1)
18
[
ParseChildren
(true)]
System.Web.Entity (1)
System\Data\WebControls\EntityDataSource.cs (1)
42
ParseChildren
(true),
System.Web.Extensions (13)
UI\ExtenderControl.cs (1)
22
ParseChildren
(true),
UI\ScriptManager.cs (1)
42
ParseChildren
(true),
UI\ScriptManagerProxy.cs (1)
27
ParseChildren
(true),
UI\UpdatePanel.cs (1)
25
ParseChildren
(true),
UI\UpdateProgress.cs (1)
24
ParseChildren
(true),
UI\WebControls\DataPager.cs (1)
23
ParseChildren
(true),
UI\WebControls\Expressions\CustomExpression.cs (1)
14
ParseChildren
(true, "Parameters")
UI\WebControls\Expressions\OrderByExpression.cs (1)
12
ParseChildren
(true, "ThenByExpressions")
UI\WebControls\Expressions\ParameterDataSourceExpression.cs (1)
10
ParseChildren
(true, "Parameters")
UI\WebControls\Expressions\QueryExpression.cs (1)
12
ParseChildren
(true, "Expressions"),
UI\WebControls\LinqDataSource.cs (1)
28
ParseChildren
(true),
UI\WebControls\QueryableDataSource.cs (1)
14
ParseChildren
(true),
UI\WebControls\QueryExtender.cs (1)
17
[
ParseChildren
(true, "Expressions")]
System.Web.Mobile (2)
UI\MobileControls\DeviceSpecific.cs (1)
32
ParseChildren
(false),
UI\MobileControls\MobileControl.cs (1)
39
ParseChildren
(false),
16 references to ParseChildren
System.Web (16)
UI\ControlBuilder.cs (11)
1593
ParseChildrenAttribute
pca = null;
1594
object[] attrs = TargetFrameworkUtil.GetCustomAttributes(ControlType, typeof(
ParseChildrenAttribute
), /*inherit*/ true);
1596
pca = (
ParseChildrenAttribute
)attrs[0];
1914
ParseChildrenAttribute
pca = GetParseChildrenAttribute(type);
1975
private static
ParseChildrenAttribute
s_markerParseChildrenAttribute = new ParseChildrenAttribute();
1979
private static
ParseChildrenAttribute
GetParseChildrenAttribute(Type controlType) {
1981
ParseChildrenAttribute
pca = (
ParseChildrenAttribute
)s_parseChildrenAttributeCache[controlType];
1985
object[] attrs = TargetFrameworkUtil.GetCustomAttributes(controlType, typeof(
ParseChildrenAttribute
), /*inherit*/ true);
1988
Debug.Assert(attrs[0] is
ParseChildrenAttribute
);
1989
pca = (
ParseChildrenAttribute
)attrs[0];
UI\ParseChildrenAsPropertiesAttribute.cs (5)
25
public static readonly
ParseChildrenAttribute
ParseAsChildren = new ParseChildrenAttribute(false, false);
28
public static readonly
ParseChildrenAttribute
ParseAsProperties = new ParseChildrenAttribute(true, false);
31
public static readonly
ParseChildrenAttribute
Default = ParseAsChildren;
147
ParseChildrenAttribute
pca = obj as
ParseChildrenAttribute
;