I managed to solve it by referring to earlier threads about this.
var fstream = Stream.CreateFilteredStream();
fstream.AddTrack("hello");
fstream.JsonObjectReceived += (sender, args) =>
{
fstream.StartStreamMatchingAllConditions();
Can anyone tell me how can I save the JSON file for later processing?
var fstream = Stream.CreateFilteredStream();
fstream.AddTrack("hello");
fstream.JsonObjectReceived += (sender, args) =>
{
Console.WriteLine(args.Value);
};fstream.StartStreamMatchingAllConditions();
Can anyone tell me how can I save the JSON file for later processing?