Click or drag to resize
Framework.ParseFrameworkSettingsNode 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.3.0.0 (5.3.0)
Syntax
public static void ParseFrameworkSettingsNode(
	XmlNode rootNode,
	out List<SettingDefinition> settingDefinitions,
	out List<ValueList> valueLists,
	out List<string> supportedFrameworks
)

Parameters

rootNode
Type: System.Xml.XmlNode
The root node.
settingDefinitions
Type: System.Collections.Generic.List<SettingDefinition>
The setting definitions read from the node's childnodes.
valueLists
Type: System.Collections.Generic.List<ValueList>
The value lists read from the node's childnodes.
supportedFrameworks
Type: System.Collections.Generic.List<String>
The supported frameworks read from the node's childnodes.
See Also