FrameworkParseFrameworkSettingsNode Method  | 
 
            Parses the framework settings definition pointed at by rootnode into three output lists.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.CodeGenerationMetaData.Frameworks
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntaxpublic static void ParseFrameworkSettingsNode(
	XmlNode rootNode,
	out List<SettingDefinition> settingDefinitions,
	out List<ValueList> valueLists,
	out List<string> supportedFrameworks
)
Public Shared Sub ParseFrameworkSettingsNode ( 
	rootNode As XmlNode,
	<OutAttribute> ByRef settingDefinitions As List(Of SettingDefinition),
	<OutAttribute> ByRef valueLists As List(Of ValueList),
	<OutAttribute> ByRef supportedFrameworks As List(Of String)
)
Parameters
- rootNode
 - Type: System.XmlXmlNode
The root node. - settingDefinitions
 - Type: System.Collections.GenericListSettingDefinition
The setting definitions read from the node's childnodes. - valueLists
 - Type: System.Collections.GenericListValueList
The value lists read from the node's childnodes. - supportedFrameworks
 - Type: System.Collections.GenericListString
The supported frameworks read from the node's childnodes. 
See Also