压缩代码json字符串并返回客户端

时间:2016-06-13 00:05:38

标签: json asp.net-mvc compression

我有一个ASP.NET MVC控制器C#,我有以下方法:

public JsonResult PlayersData()
 {
     List<Player> players = new List<Player>();

     // here some code to fill players list
     // ...

     return Json(players, JsonRequestBehavior.AllowGet);
 } 

我想发送Json压缩,我的意思是List,因为json重约12MB。

不想启用IIS压缩,我需要在相同的代码中执行此操作。

  

有任何线索吗?

0 个答案:

没有答案