CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
PrincipalCache.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="PrincipalCache.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Provides a cache for a limited number of</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Security.Principal;
11
12namespace Csla.Security
13{
18 public static class PrincipalCache
19 {
20 private static List<IPrincipal> _cache = new List<IPrincipal>();
21
25 public static int MaxCacheSize { get; internal set; } = 10;
26
35 public static IPrincipal GetPrincipal(string name)
36 {
37 lock (_cache)
38 {
39 foreach (IPrincipal item in _cache)
40 if (item.Identity.Name == name)
41 return item;
42 return null;
43 }
44 }
45
52 public static void AddPrincipal(IPrincipal principal)
53 {
54 lock (_cache)
55 {
56 if (!_cache.Contains(principal))
57 {
58 _cache.Add(principal);
59 if (_cache.Count > MaxCacheSize)
60 _cache.RemoveAt(0);
61 }
62 }
63 }
64
68 public static void Clear()
69 {
70 lock (_cache)
71 _cache.Clear();
72 }
73 }
74}