| TemplateBindingsManagerGetTemplateBindingsWithFilter Method  | 
            Gets the template bindings which match the three specified filter elements.
            
 
Namespace: SD.LLBLGen.Pro.ApplicationCore.CodeGenerationMetaData.TemplatesAssembly: SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.0.0.0 (5.0.0)
Syntaxpublic List<TemplateBindings> GetTemplateBindingsWithFilter(
	string languageName,
	string platformName,
	List<string> driverIDs,
	string frameworkName
)
Public Function GetTemplateBindingsWithFilter ( 
	languageName As String,
	platformName As String,
	driverIDs As List(Of String),
	frameworkName As String
) As List(Of TemplateBindings)
Parameters
- languageName
 - Type: SystemString
Name of the language. - platformName
 - Type: SystemString
Name of the platform. - driverIDs
 - Type: System.Collections.GenericListString
The driver IDs to filter on. An empty list means no filter on driverid should be performed. - frameworkName
 - Type: SystemString
Name of the framework. 
Return Value
Type: 
ListTemplateBindings
            list of templatebindings which match the specified elements, or an empty list if no matches were found.
            
See Also