System.Yaml.YamlNode.FromYaml C# (CSharp) Méthode

FromYaml() public static méthode

Convert YAML text yaml to a list of YamlNode.
public static FromYaml ( Stream s ) : System.Yaml.YamlNode[]
s System.IO.Stream from which YAML document is read.
Résultat System.Yaml.YamlNode[]
        public static YamlNode[] FromYaml(Stream s)
        {
            using ( var sr = new StreamReader(s) )
                return FromYaml(sr);
        }

Same methods

YamlNode::FromYaml ( Stream s, YamlConfig config ) : System.Yaml.YamlNode[]
YamlNode::FromYaml ( TextReader tr ) : System.Yaml.YamlNode[]
YamlNode::FromYaml ( TextReader tr, YamlConfig config ) : System.Yaml.YamlNode[]
YamlNode::FromYaml ( string yaml ) : System.Yaml.YamlNode[]
YamlNode::FromYaml ( string yaml, YamlConfig config ) : System.Yaml.YamlNode[]