CodeGenerationEngineBaseCallTemplateEmitterTElement Method |
Calls the template emitter logic to emit code for the template using the input.
Namespace:
SD.LLBLGen.Pro.GeneratorCore
Assembly:
SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.1.0.0 (5.1.0)
Syntax protected abstract void CallTemplateEmitter<TElement>(
Assembly compiledTemplatesAssembly,
string templateID,
Dictionary<string, TaskParameter> parameters,
StreamWriter outputWriter,
TElement currentElement
)
Protected MustOverride Sub CallTemplateEmitter(Of TElement) (
compiledTemplatesAssembly As Assembly,
templateID As String,
parameters As Dictionary(Of String, TaskParameter),
outputWriter As StreamWriter,
currentElement As TElement
)
Parameters
- compiledTemplatesAssembly
- Type: System.ReflectionAssembly
The compiled templates assembly. - templateID
- Type: SystemString
The template ID. - parameters
- Type: System.Collections.GenericDictionaryString, TaskParameter
The parameters. - outputWriter
- Type: System.IOStreamWriter
The output writer. - currentElement
- Type: TElement
The current element.
Type Parameters
- TElement
- The type of the element.
See Also