C# Class System.Yaml.YamlNodeManipulator

Implements utility functions to instantiating YamlNode's
Afficher le fichier Open project: jbruening/YamlSerializer-Fork

Méthodes protégées

Méthode Description
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.

Method Details

map() protected static méthode

Create a mapping node. Tag is set to be "!!map".
protected static map ( ) : YamlMapping
Résultat YamlMapping

map_tag() protected static méthode

Create a mapping node.
protected static map_tag ( string tag ) : YamlMapping
tag string Tag for the mapping.
Résultat YamlMapping

seq() protected static méthode

Create a sequence node. Tag is set to be "!!seq".
protected static seq ( ) : YamlSequence
Résultat YamlSequence

seq_tag() protected static méthode

Create a sequence node.
protected static seq_tag ( string tag ) : YamlSequence
tag string Tag for the seuqnce.
Résultat YamlSequence

str() protected static méthode

Create a scalar node. Tag is set to be "!!str".
protected static str ( string value ) : YamlScalar
value string Value for the scalar node.
Résultat YamlScalar

str() protected static méthode

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.
Résultat YamlScalar