示例#1
0
        /// <summary>
        /// 没有文件时返回
        /// </summary>
        /// <returns></returns>
        private IActionResult NotFile()
        {
            var bt = _markLogoService.Get404Stream();

            if (bt == null)
            {
                return(NotFound());
            }
            return(File(bt, "image/png"));
        }