通过httpcache循环c#
发布时间:2020-12-15 18:19:37 所属栏目:百科 来源:网络整理
导读:在VB.NET上我可以做这样的事情来写出缓存中的所有密钥: Dim oc As HttpContext = HttpContext.CurrentFor Each c As Object In oc.Cache oc.Response.Write(c.Key.ToString())Next 尽管.Key没有出现在Intellisense中,但代码运行得很好. 我如何在c#中做同样
在VB.NET上我可以做这样的事情来写出缓存中的所有密钥:
Dim oc As HttpContext = HttpContext.Current For Each c As Object In oc.Cache oc.Response.Write(c.Key.ToString()) Next 尽管.Key没有出现在Intellisense中,但代码运行得很好. 我如何在c#中做同样的事情? HttpContext oc = HttpContext.Current; foreach (object c in oc.Cache) { oc.Response.Write(c.key.ToString()); } 它不喜欢.key.位.我在这里不知所措.有任何想法如何以这种方式访问??密钥? 解决方法
下面代码snap工作正常:
HttpContext oc = HttpContext.Current; foreach (var c in oc.Cache) { oc.Response.Write(((DictionaryEntry)c).Key.ToString()); } 谢谢你的时间 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |