Create custom sources
class MySource : ManualFeedSource<string>
{
public MySource()
: base(Parse) { }
private static ISettingsNode Parse(string input) { ... }
}
var source = new MySource();
source.Push("input1");
source.Push("input2");
// Push method can be used by an internal periodical/event-based update routine.Related pages
Configuration sourcesConstant sourcesCombine sourcesScope sourcesNest sourcesFreeze sourcesLast updated
Was this helpful?