Example #1
0
 public void Post(UpdateMediaEncoderPath request)
 {
     _mediaEncoder.UpdateEncoderPath(request.Path, request.PathType);
 }
        public void Post(UpdateMediaEncoderPath request)
        {
            var task = _mediaEncoder.UpdateEncoderPath(request.Path, request.PathType);

            Task.WaitAll(task);
        }