Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
protected virtual List<TElement> GetElementsToProcess<TElement>(
	IEnumerable<TElement> elementsToTraverse
)

Parameters

elementsToTraverse
Type: System.Collections.GenericIEnumerableTElement
The elements to traverse.

Type Parameters

TElement
The type of the element.

Return Value

Type: ListTElement
the list of elements from elementsToTraverse matching the ElementFilterToUse, or all elements if the filter crashed or wasn't defined
See Also