EntLibCachingManagerAdd Method (String, Object, CacheExpirationType, TimeSpan) |
Adds the specified item to the cache.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public void Add(
string key,
Object value,
CacheExpirationType expirationType,
TimeSpan expirationPeriod
)
Public Sub Add (
key As String,
value As Object,
expirationType As CacheExpirationType,
expirationPeriod As TimeSpan
)
public:
virtual void Add(
String^ key,
Object^ value,
CacheExpirationType expirationType,
TimeSpan expirationPeriod
) sealed
abstract Add :
key : string *
value : Object *
expirationType : CacheExpirationType *
expirationPeriod : TimeSpan -> unit
override Add :
key : string *
value : Object *
expirationType : CacheExpirationType *
expirationPeriod : TimeSpan -> unit
Parameters
- key
- Type: SystemString
The key. - value
- Type: SystemObject
The value. - expirationType
- Type: Atomia.Billing.Core.Sdk.BusinessLogicCacheExpirationType
Type of the expiration. - expirationPeriod
- Type: SystemTimeSpan
The expiration period.
Implements
ICachingManagerAdd(String, Object, CacheExpirationType, TimeSpan)See Also