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

ToYaml() public méthode

Convert YamlNode to a YAML text and save it to Stream s.
public ToYaml ( Stream s, YamlConfig config ) : void
s System.IO.Stream to output.
config YamlConfig YAML configuration to customize serialization.
Résultat void
        public void ToYaml(Stream s, YamlConfig config)
        {
            DefaultPresenter.ToYaml(s, this, config);
        }

Same methods

YamlNode::ToYaml ( ) : string
YamlNode::ToYaml ( YamlConfig config ) : string
YamlNode::ToYaml ( Stream s ) : void
YamlNode::ToYaml ( TextWriter tw ) : void
YamlNode::ToYaml ( TextWriter tw, YamlConfig config ) : void