Vertragsverwaltung-Klassenbibliothek  

CachedPE01.GetCustomizedCacheKey -Methode

Parameter

request

Quellcode

[Visual Basic]
    Public Overridable Function GetCustomizedCacheKey(ByVal request As RequestContext) As String Implements CrystalDecisions.ReportSource.ICachedReport.GetCustomizedCacheKey 
Dim key As [String] = Nothing 
'// The following is the code used to generate the default 
'// cache key for caching report jobs in the ASP.NET Cache. 
'// Feel free to modify this code to suit your needs. 
'// Returning key == null causes the default cache key to 
'// be generated. 

'key = RequestContext.BuildCompleteCacheKey( 
' request, 
' null, // sReportFilename 
' this.GetType(), 
' this.ShareDBLogonInfo ); 
Return key 
End Function

Forderungen

Plattformen: Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

Siehe auch

CachedPE01