You can retrieve the same information from Real-time data.
0#JGBc1 is a chain RIC so you can use IRealtimeService::GetChain to get the constituents of a Realtime chain.
IRealtimeService realtime;...realtime.GetChain("0#JGBc1", data=>{ foreach (var ric in data) { Console.WriteLine(ric); } }, error=>{... });
After running, it will print the following.
JGBH8DJGBH8
For more information regarding chains, please refer to Tutorial Real-time data in Chains section.
Thank you very much, that works well, but leads me to my next question: is there a way of forcing a sequential retrieval of information, instead of asynchronous? In this case, I need to pick out the current label in the chain as a RIC for a subsequent query. I would also like to know if possible in general.
Understood thanks.