namespace IStation { internal sealed partial class SharedMemoryCache { /// /// Removes a specified percentage of cache entries from the cache object /// /// The percentage of total cache entries to remove /// The number of entries removed from the cache public long Trim(int percent) { return _memoryCache.Trim(percent); } } }