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