Method | Description | |
---|---|---|
EnumerateNamedNodesOf ( |
Finds a child node by its name and enumerates its contents
|
|
EnumerateNodesOf ( YamlMappingNode mapping ) : YamlNode>>.IEnumerable |
Enumerates the key-value pairs in a mapping node
|
|
EnumerateNodesOf ( YamlSequenceNode seq ) : IEnumerable |
Enumerates the nodes in a sequence node while resolving the conditional expressions
|
|
GetOptionalScalarValue ( |
Gets an optional scalar value identified by its key
|
|
GetScalarValue ( |
Gets a scalar value identified by its key
|
|
SetActiveGoal ( Goal goal ) : void |
Sets the active goal to be used for filtering the nodes
|
public EnumerateNamedNodesOf ( |
||
parent | Parent node | |
groupName | string | Name of the group to find |
return | YamlNode>>.IEnumerable |
public EnumerateNodesOf ( YamlMappingNode mapping ) : YamlNode>>.IEnumerable |
||
mapping | YamlMappingNode | Mapping node to be enumerated |
return | YamlNode>>.IEnumerable |
public EnumerateNodesOf ( YamlSequenceNode seq ) : IEnumerable |
||
seq | YamlSequenceNode | Sequence node to be enumerated |
return | IEnumerable |
public GetOptionalScalarValue ( |
||
parent | Parent node | |
key | string | Key of the value |
defaultValue | string | Default value to be used if the key is not found in parent |
return | string |
public GetScalarValue ( |
||
parent | Parent node | |
key | string | Key of the value |
errorMessage | string | Error message if the key does not exists |
return | string |
public SetActiveGoal ( Goal goal ) : void | ||
goal | Goal | New active goal |
return | void |