9using System.Collections.Generic;
10using System.Security.Principal;
18 public static class PrincipalCache
20 private static List<IPrincipal> _cache =
new List<IPrincipal>();
25 public static int MaxCacheSize {
get;
internal set; } = 10;
35 public static IPrincipal GetPrincipal(
string name)
39 foreach (IPrincipal item
in _cache)
40 if (item.Identity.Name == name)
52 public static void AddPrincipal(IPrincipal principal)
56 if (!_cache.Contains(principal))
58 _cache.Add(principal);
59 if (_cache.Count > MaxCacheSize)
68 public static void Clear()