System.Yaml.YamlNodeManipulator.map_tag C# (CSharp) Méthode

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
        protected static YamlMapping map_tag(string tag, params YamlNode[] nodes)
        {
            var map = new YamlMapping(nodes);
            map.Tag = tag;
            return map;
        }