System.Yaml.YamlNodeManipulator.map_tag C# (CSharp) Method

map_tag() protected static method

Create a mapping node.
protected static map_tag ( string tag ) : YamlMapping
tag string Tag for the mapping.
return YamlMapping
        protected static YamlMapping map_tag(string tag, params YamlNode[] nodes)
        {
            var map = new YamlMapping(nodes);
            map.Tag = tag;
            return map;
        }