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 descendants 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; }
public System.Collections.Generic.IEnumerable<Microsoft.Build.Construction.ProjectElement> AllChildren { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; }
member this.AllChildren : seq<Microsoft.Build.Construction.ProjectElement>
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
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.
- Attributes
Remarks
Recursion is possible because project element containers may contain children that are themselves project element containers.