Example #1
0
 public async Task <IActionResult> Get()
 {
     return(new FileStreamResult(await _webcamService.StreamProxy(), _cameraConfiguration.ContentType)
     {
         EnableRangeProcessing = true
     });
 }