Combine sources
var source1 = new JsonStringSource(...);
var source2 = new YamlStringSource(...);
var source3 = new XmlStringSource(...);
var combined = source1.CombineWith(source2, source3);
// combined == Merge(source1, source2, source3)
// combined.Data == Merge(Merge(source1.data, source2.data), source3.data)Related pages
Settings nodes mergingConfiguration sourcesLast updated
Was this helpful?