2
我想每天緩存活動目錄數據,例如電子郵件,名字和姓氏兩次。這應該在global.aspx application.start()中出現在幕後。現在,我想要獲取1700(我的應用程序允許瀏覽用戶的功能)用戶,我會從緩存的數據中做到這一點。我的代碼在Asp.net C#中。緩存Active Directory數據
有人可以讓我知道如何做到這一點。
我想每天緩存活動目錄數據,例如電子郵件,名字和姓氏兩次。這應該在global.aspx application.start()中出現在幕後。現在,我想要獲取1700(我的應用程序允許瀏覽用戶的功能)用戶,我會從緩存的數據中做到這一點。我的代碼在Asp.net C#中。緩存Active Directory數據
有人可以讓我知道如何做到這一點。
我的代碼在第一次訪問時運行(您可以通過在global.asax文件中放置幾行來開始此應用程序)。它將緩存的數據存儲在ASP.Net緩存中12小時。 12小時後,緩存將在下次訪問數據時刷新。
public class UserInfo
{
public static List<UserInfo> UserInfoCache {
get{
if(HttpContext.Current.Cache["CachedUserList"] == null) {
PrincipalContext ctx = new PrincipalContext(ContextType.Domain);
PrincipalSearcher ps = new PrincipalSearcher(new UserPrincipal(ctx) { SamAccountName = "*" });
var users = ps.FindAll();
var result = from c in users
let u = (UserPrincipal)c
select new UserInfo() { Email = u.EmailAddress, FirstName = u.GivenName, LastName = u.Surname };
HttpContext.Current.Cache.Insert("CachedUserList", result, null, DateTime.Now.AddHours(12), System.Web.Caching.Cache.NoSlidingExpiration);
}
return (List<UserInfo>)HttpContext.Current.Cache["CachedUserList"];
}
}
public string Email { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
我做到了,但在Cache.Insert它顯示我錯誤:值不能爲空。參數名稱:值 –
它工作正常.. :) :)傳遞一個空值..thnak你 –