I'm in C# and running a command:
IList<Stream> streams = mRepository.GetStreams(new Options(StreamsCmdFlags.None, null, null, null, 0), null);
Which successfully get a list of streams. What I wanted to know is, how can I modify this command to only collect a list of unloaded streams?
Many Thanks