Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everybody,
Am using .NET SDK and need to retrieve list of streams on particular location.
For listing Apps I do use location.GetAppIdentifiers
Is there something similar for Streams?
Thank you
Jiri
As @Ray_Strother points out, "Stream" is not a concept the engine knows anything about, and the .NET SDK can only be used to interact with the engine. For that type of information you need to call endpoints in the repository. Here's an example on how to get stream information using the library mentioned above for REST access:
var client = new RestClient(url);
client.AsNtlmUserViaProxy(certificateValidation: false);
var streams = client.Get<JArray>("/qrs/stream");
Console.WriteLine(streams);
Hi guys, thanks for explanation and examples.
Above RestClient library works perfecly.. doing exactly what I needed !