CodeGenerationEngineBaseGetElementsToProcessTElement Method  | 
 
            Gets the elements to process. Applies the ElementFilterToUse, if it's specified.
            
 
    Namespace: 
   SD.LLBLGen.Pro.GeneratorCore
    Assembly:
   SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.11.0.0 (5.11.23.1114)
Syntaxprotected virtual List<TElement> GetElementsToProcess<TElement>(
	IEnumerable<TElement> elementsToTraverse
)
Protected Overridable Function GetElementsToProcess(Of TElement) ( 
	elementsToTraverse As IEnumerable(Of TElement)
) As List(Of TElement)
Parameters
- elementsToTraverse
 - Type: System.Collections.GenericIEnumerableTElement
The elements to traverse. 
Type Parameters
- TElement
 - The type of the element.
 
Return Value
Type: 
ListTElementthe list of elements from elementsToTraverse matching the ElementFilterToUse, or all elements if the filter crashed or wasn't defined
See Also