Click or drag to resize

ConfigAccessorAddValueByPath Method (ConfigNode, String, String)

Adds a repeated value in config node by a path.

Namespace:  KSPDev.ConfigUtils
Assembly:  KSPDev_Utils.2.5 (in KSPDev_Utils.2.5.dll) Version: 2.5 for KSP v1
Syntax
C#
public static void AddValueByPath(
	ConfigNode node,
	string path,
	string value
)
Request Example View Source

Parameters

node
Type: (Default Namespace)ConfigNode
A node to set data in.
path
Type: SystemString
A string path to the nodes. Path components should be separated by '/' symbol.
value
Type: SystemString
A string value to add into the node.
See Also