BlockBuilder.Children Property
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Gets the collection of child elements of the block builder.
Namespace: System.Web.Razor.Parser.SyntaxTree
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public Property Children As IList(Of SyntaxTreeNode)
Get
Private Set
'Usage
Dim instance As BlockBuilder
Dim value As IList(Of SyntaxTreeNode)
value = instance.Children
public IList<SyntaxTreeNode> Children { get; private set; }
public:
property IList<SyntaxTreeNode^>^ Children {
IList<SyntaxTreeNode^>^ get ();
private: void set (IList<SyntaxTreeNode^>^ value);
}
member Children : IList<SyntaxTreeNode> with get, private set
function get Children () : IList<SyntaxTreeNode>
private function set Children (value : IList<SyntaxTreeNode>)
Property Value
Type: System.Collections.Generic.IList<SyntaxTreeNode>
The collection of child elements of the block builder.