首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

关于cache添加的一段代码~ 看不懂

2012-06-21 
关于cache添加的一段代码~ 看不懂求助C# codeHttpContext.Current.Cache.Add(DummyCacheItemKey, String.E

关于cache添加的一段代码~ 看不懂 求助

C# code
HttpContext.Current.Cache.Add(DummyCacheItemKey, String.Empty, null,            DateTime.MaxValue, TimeSpan.FromMinutes(1), System.Web.Caching.CacheItemPriority.Normal,            new System.Web.Caching.CacheItemRemovedCallback((x, y, z) => new System.Net.WebClient().DownloadData("HTTP://127.0.0.1/index.aspx" )));


new System.Web.Caching.CacheItemRemovedCallback((x, y, z) => new System.Net.WebClient().DownloadData("HTTP://127.0.0.1/index.aspx" ))
中xyz 是什么 ?要干什么~

[解决办法]
貌似是lambda表达式
[解决办法]
CacheItemRemovedCallback转到定义 ,看看.

热点排行