LEADTOOLS Medical (Leadtools.Medical.Caching assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
Cache Constructor(String,TimeSpan,Int64,IStorageProvider)
See Also 
Leadtools.Medical.Caching Namespace > Cache Class > Cache Constructor : Cache Constructor(String,TimeSpan,Int64,IStorageProvider)



context
A System.String which identifies the cache context, each user using the cache should have its own context.
itemExpireDuration
A System.TimeSpan value which specify how long an item remains in the cache.
bytesLimit
The cache maximum size in bytes.
provider
An object which implements the Leadtools.Medical.Caching.Storage.IStorageProvider to store and retrieve cache items.

The Cache Constructor(String,TimeSpan,Int64,IStorageProvider) is available as an add-on to the LEADTOOLS Medical Imaging toolkits.

Creates a new instance of the Cache class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal context As String, _
   ByVal itemExpireDuration As TimeSpan, _
   ByVal bytesLimit As Long, _
   ByVal provider As IStorageProvider _
)
Visual Basic (Usage)Copy Code
Dim context As String
Dim itemExpireDuration As TimeSpan
Dim bytesLimit As Long
Dim provider As IStorageProvider
 
Dim instance As New Cache(context, itemExpireDuration, bytesLimit, provider)
C# 
public Cache( 
   string context,
   TimeSpan itemExpireDuration,
   long bytesLimit,
   IStorageProvider provider
)
C++/CLI 
public:
Cache( 
   String^ context,
   TimeSpan itemExpireDuration,
   int64 bytesLimit,
   IStorageProvider^ provider
)

Parameters

context
A System.String which identifies the cache context, each user using the cache should have its own context.
itemExpireDuration
A System.TimeSpan value which specify how long an item remains in the cache.
bytesLimit
The cache maximum size in bytes.
provider
An object which implements the Leadtools.Medical.Caching.Storage.IStorageProvider to store and retrieve cache items.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also