Chili.Opf3 Send comments on this topic.
BuildUniqueKey(IStorage,IQuery) Method
See Also 
Chili.Opf3.Caching Namespace > CacheManagerBase Class > BuildUniqueKey Method : BuildUniqueKey(IStorage,IQuery) Method




storage
The storage on which the query is executed.
query
The query whose key is generated.
Builds a key for the given query. This key may be used in the cache.

Syntax

Visual Basic (Declaration) 
Overloads Protected Function BuildUniqueKey( _
   ByVal storage As IStorage, _
   ByVal query As IQuery _
) As String
Visual Basic (Usage)Copy Code
Dim instance As CacheManagerBase
Dim storage As IStorage
Dim query As IQuery
Dim value As String
 
value = instance.BuildUniqueKey(storage, query)
C# 
protected string BuildUniqueKey( 
   IStorage storage,
   IQuery query
)
Managed Extensions for C++ 
protected: string* BuildUniqueKey( 
   IStorage* storage,
   IQuery* query
) 
C++/CLI 
protected:
String^ BuildUniqueKey( 
   IStorage^ storage,
   IQuery^ query
) 

Parameters

storage
The storage on which the query is executed.
query
The query whose key is generated.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also