Example #1
0
        public async Task <ActionResult <StreamDto> > GetStreamInfo([FromRoute] string streamName)
        {
            StreamDto stream = null;

            try
            {
                stream = await _streamResource.getStream(streamName);
            }
            catch (Exception)
            {
            }
            return(Ok(stream));
        }