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, YamlConfig config ) : System.Yaml.YamlNode[]
s System.IO.Stream from which YAML document is read.
config YamlConfig YAML configuration to customize serialization.
Résultat System.Yaml.YamlNode[]
        public static YamlNode[] FromYaml(Stream s, YamlConfig config)
        {
            using ( var sr = new StreamReader(s) )
                return FromYaml(sr, config);
        }

Same methods

YamlNode::FromYaml ( Stream s ) : 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[]