Last updated 4 years ago
Was this helpful?
Location: .
parses well-formed YAML documents from in-memory strings and supports manual external updates:
var source = new YamlStringSource("<yaml content>") source.Push("<yaml content>") // update with new content
parses YAML files and automatically watches for changes:
var source = new YamlFileSource("settings/config.yml");
A file that does not exist simply leads to a null , which implies default settings values unless something is .
null