I' using dot net core and need to reload the content from MemoryStream using AddJsonStream(), however there's no direct way of reloading the content like using reloadOnChange in AddJsonFile().I've to reload below thing:
config.AddJsonStream(new System.IO.MemoryStream(System.Text.Encoding.UTF8.GetBytes(json)));
Is there any way through which it auto reload the Stream on interval dynamically?