System.Yaml.YamlNodeManipulator.map_tag C# (CSharp) 메소드

map_tag() 보호된 정적인 메소드

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