Ejemplo n.º 1
0
 public StreamInfo GetStreamInfo(VideoStream stream) => currentStreams.ContainsKey(stream) ? currentStreams[stream] : null;
Ejemplo n.º 2
0
 public StreamInfo GetStreamInfo(VideoStream stream) => currentStreams.TryGetValue(stream, out var streamInfo) ? streamInfo : null;