ICachingManagerAdd 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 void Add(
string key,
Object value,
CacheExpirationType expirationType,
TimeSpan expirationPeriod
)
Sub Add (
key As String,
value As Object,
expirationType As CacheExpirationType,
expirationPeriod As TimeSpan
)
void Add(
String^ key,
Object^ value,
CacheExpirationType expirationType,
TimeSpan expirationPeriod
)
abstract 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.
See Also