标签:bsp http lob 缓存 list port pru 读取 logs
例:
1、创建缓存并存入数据
1 Cache CacheXML = HttpRuntime.Cache; 2 if (obj != null) 3 { 4 CacheXML.Insert("XMLobj", obj);// 5 }
2、读取缓存数据
1 var objCache = HttpRuntime.Cache.Get("XMLobj"); 2 listall = (List<CustomReport>)objCache;
标签:bsp http lob 缓存 list port pru 读取 logs
原文地址:http://www.cnblogs.com/lijianda/p/7088835.html