LEADTOOLS Medical (Leadtools.Medical.Caching assembly)
LEAD Technologies, Inc

Cache Constructor(String,TimeSpan,Int64,String,Boolean)






A System.String which identifies the cache context, each user using the cache should have its own context.
A System.TimeSpan value which specify how long an item remains in the cache.
The cache maximum size in bytes.
The physical directory path where cache items will be stored.
true to encrypt the cache items added to this cache object; otherwise false.
Creates a new instance of the Cache class.
Syntax
public Cache( 
   string context,
   TimeSpan itemExpireDuration,
   long bytesLimit,
   string storageDirectory,
   bool encryptData
)
'Declaration
 
Public Function New( _
   ByVal context As String, _
   ByVal itemExpireDuration As TimeSpan, _
   ByVal bytesLimit As Long, _
   ByVal storageDirectory As String, _
   ByVal encryptData As Boolean _
)
'Usage
 
Dim context As String
Dim itemExpireDuration As TimeSpan
Dim bytesLimit As Long
Dim storageDirectory As String
Dim encryptData As Boolean
 
Dim instance As New Cache(context, itemExpireDuration, bytesLimit, storageDirectory, encryptData)
public Cache( 
   string context,
   TimeSpan itemExpireDuration,
   long bytesLimit,
   string storageDirectory,
   bool encryptData
)
function Cache( 
   context ,
   itemExpireDuration ,
   bytesLimit ,
   storageDirectory ,
   encryptData 
)
public:
Cache( 
   String^ context,
   TimeSpan itemExpireDuration,
   int64 bytesLimit,
   String^ storageDirectory,
   bool encryptData
)

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.
storageDirectory
The physical directory path where cache items will be stored.
encryptData
true to encrypt the cache items added to this cache object; otherwise false.
Remarks

This constructor uses the machine physical disk to store and retrieve cache information. The cache contents will be protected and encrypted so only the same user context who stored the cache item can retrieve and view the cached items.

If you don't want the cache information to be encrypted, set the encryptData to false.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Cache Class
Cache Members
Overload List

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.