메소드 | 설명 | |
---|---|---|
map ( ) : YamlMapping |
Create a mapping node. Tag is set to be "!!map".
|
|
map_tag ( string tag ) : YamlMapping |
Create a mapping node.
|
|
seq ( ) : YamlSequence |
Create a sequence node. Tag is set to be "!!seq".
|
|
seq_tag ( string tag ) : YamlSequence |
Create a sequence node.
|
|
str ( string value ) : |
Create a scalar node. Tag is set to be "!!str".
|
|
str ( string tag, string value ) : |
Create a scalar node.
|
protected static map_tag ( string tag ) : YamlMapping | ||
tag | string | Tag for the mapping. |
리턴 | YamlMapping |
protected static seq_tag ( string tag ) : YamlSequence | ||
tag | string | Tag for the seuqnce. |
리턴 | YamlSequence |
protected static str ( string value ) : |
||
value | string | Value for the scalar node. |
리턴 |
protected static str ( string tag, string value ) : |
||
tag | string | Tag for the scalar node. |
value | string | Value for the scalar node. |
리턴 |