Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
This Method extends items time to live.

Namespace:  SharedCache.WinServiceCommon.Provider.Cache
Assembly:  SharedCache.WinServiceCommon (in SharedCache.WinServiceCommon.dll) Version: 3.0.5.1 (3.0.5.1)

Syntax

C#
public abstract void ExtendTtl(
	string key,
	DateTime expires
)
Visual Basic (Declaration)
Public MustOverride Sub ExtendTtl ( _
	key As String, _
	expires As DateTime _
)
Visual C++
public:
virtual void ExtendTtl(
	String^ key, 
	DateTime expires
) abstract

Parameters

key
Type: System..::.String
The key for cache item
expires
Type: System..::.DateTime
Identify when item will expire from the cache.

Remarks

WorkItem Request: http://www.codeplex.com/SharedCache/WorkItem/View.aspx?WorkItemId=6129

See Also