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