C# Класс System.Yaml.YamlNodeManipulator

Implements utility functions to instantiating YamlNode's
Показать файл Открыть проект

Защищенные методы

Метод Описание
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 ) : YamlScalar

Create a scalar node. Tag is set to be "!!str".

str ( string tag, string value ) : YamlScalar

Create a scalar node.

Описание методов

map() защищенный статический Метод

Create a mapping node. Tag is set to be "!!map".
protected static map ( ) : YamlMapping
Результат YamlMapping

map_tag() защищенный статический Метод

Create a mapping node.
protected static map_tag ( string tag ) : YamlMapping
tag string Tag for the mapping.
Результат YamlMapping

seq() защищенный статический Метод

Create a sequence node. Tag is set to be "!!seq".
protected static seq ( ) : YamlSequence
Результат YamlSequence

seq_tag() защищенный статический Метод

Create a sequence node.
protected static seq_tag ( string tag ) : YamlSequence
tag string Tag for the seuqnce.
Результат YamlSequence

str() защищенный статический Метод

Create a scalar node. Tag is set to be "!!str".
protected static str ( string value ) : YamlScalar
value string Value for the scalar node.
Результат YamlScalar

str() защищенный статический Метод

Create a scalar node.
protected static str ( string tag, string value ) : YamlScalar
tag string Tag for the scalar node.
value string Value for the scalar node.
Результат YamlScalar