forked from Wyn-Enterprise/sampleSQLCustomSecurityProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWynISUserTokenCache.cs
30 lines (26 loc) · 1.03 KB
/
WynISUserTokenCache.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Runtime.Caching;
namespace OAuthAPISecurityProvider
{
public static class WynISUserTokenCache
{
private static MemoryCache _wynISUserTokenCache = new MemoryCache("WynISUserTokenCache");
public static WynISUser Get(string token)
{
return _wynISUserTokenCache.Contains(token) ? (WynISUser)_wynISUserTokenCache[token] : null;
}
/// <remarks>
/// Using the MemoryCache "Set" method, insofar as MemoryCache is thread-safe, and overwrites
/// aren't actually harmful in this scenario.
/// Also applying a sliding cache expiration, to avoid potential user disgruntlement.
/// </remarks>
public static void Add(string token, WynISUser user, TimeSpan ttl)
{
_wynISUserTokenCache.Set(token, user, new CacheItemPolicy() { SlidingExpiration = ttl });
}
public static void Remove(string token)
{
_wynISUserTokenCache.Remove(token, CacheEntryRemovedReason.Removed);
}
}
}