DataCacheAdd Method (String, Object, String)Windows Server AppFabric Caching Compatibility Library
Inserts an object to a region in the cache.

Namespace: Soss.Compat.WSAF
Assembly: soss_wsaf_compat (in soss_wsaf_compat.dll) Version: 1.1.0.100 (1.1.0.100)
Syntax

public DataCacheItemVersion Add(
	string key,
	Object value,
	string region
)

Parameters

key
Type: SystemString
The unique identifier used to access the object in the cache.
value
Type: SystemObject
The object to add to the cache.
region
Type: SystemString
The name of the region where the object will be stored.

Return Value

Type: DataCacheItemVersion
The DataCacheItemVersion object that represents the version of the object added to the cache using the provided key value.
Exceptions

ExceptionCondition
DataCacheExceptionThrown if the object already exists in the cache.
Remarks

If an item using the same key is already present in the region, this call throws an exception of type DataCacheException with the ErrorCode being set to KeyAlreadyExists.
See Also

Reference