跳转到主要内容

基础特案例

异常验证

//参数验证不为空
  ArgumentNullException.ThrowIfNull(services);
  

请求头默认传输二进制文件

context.Response.ContentType = "application/octet-stream";
context.Response.Headers.Append("Content-Disposition", 
new string[] { $"attachment;filename={generate.Domain.TrimStart('*')}.zip" });