123456789101112131415161718192021222324252627 |
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- namespace BestHTTP.Caching
- {
- public sealed class HTTPCacheMaintananceParams
- {
-
-
-
- public TimeSpan DeleteOlder { get; private set; }
-
-
-
- public ulong MaxCacheSize { get; private set; }
- public HTTPCacheMaintananceParams(TimeSpan deleteOlder, ulong maxCacheSize)
- {
- this.DeleteOlder = deleteOlder;
- this.MaxCacheSize = maxCacheSize;
- }
- }
- }
- #endif
|