ProjectElementContainer.AllChildren Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get an enumerator over all children, gotten recursively. Walks the children in a depth-first manner.
public:
property System::Collections::Generic::IEnumerable<Microsoft::Build::Construction::ProjectElement ^> ^ AllChildren { System::Collections::Generic::IEnumerable<Microsoft::Build::Construction::ProjectElement ^> ^ get(); };
public System.Collections.Generic.IEnumerable<Microsoft.Build.Construction.ProjectElement> AllChildren { get; }
member this.AllChildren : seq<Microsoft.Build.Construction.ProjectElement>
Public ReadOnly Property AllChildren As IEnumerable(Of ProjectElement)
Property Value
A recursive depth-first enumerator over all child elements.
Remarks
Recursion is possible because project element containers may contain children that are themselves project element containers.