Ejemplo n.º 1
0
        public ResLiveVideoResponse ByeLiveVideo(string mediaServerId, string cameraDeviceLable, string cameraChannelLable)
        {
            ResponseStruct rs;
            var            ret = CommonApi.ByeLiveVideo(mediaServerId, cameraDeviceLable, cameraChannelLable, out rs);

            if (rs.Code != ErrorNumber.None)
            {
                throw new HttpResponseException(JsonHelper.ToJson(rs));
            }

            return(ret);
        }