-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomWebDocumentViewerOperationLogger.vb
31 lines (27 loc) · 2.15 KB
/
CustomWebDocumentViewerOperationLogger.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Imports System
Imports System.Collections.Generic
Imports DevExpress.XtraPrinting
Imports DevExpress.XtraPrinting.Caching
Imports DevExpress.XtraReports.Web.WebDocumentViewer
Namespace CustomCachedDocumentSourceSerialization
Public Class CustomWebDocumentViewerOperationLogger
Inherits WebDocumentViewerOperationLogger
Public Overrides Sub CachedDocumentSourceSerializing(ByVal documentId As String, ByVal cachedDocumentSource As CachedDocumentSource, ByVal documentDetails As GeneratedDocumentDetails, ByVal documentStorage As DocumentStorage, ByVal printingSystemSource As PrintingSystemBase)
Dim serviceProvider = TryCast(printingSystemSource, IServiceProvider)
Dim customPageDataService = TryCast(serviceProvider.GetService(GetType(CustomPageDataService)), CustomPageDataService)
If customPageDataService IsNot Nothing Then
documentDetails.CustomData = New Dictionary(Of String, Object) From {{CustomPageDataService.Key, customPageDataService.PageAdditionalData}}
AddHandler cachedDocumentSource.PrintingSystem.XlSheetCreated, AddressOf customPageDataService.PrintingSystem_XlSheetCreated
End If
End Sub
Public Overrides Sub CachedDocumentSourceDeserialized(ByVal documentId As String, ByVal cachedDocumentSource As CachedDocumentSource, ByVal documentDetails As GeneratedDocumentDetails, ByVal documentStorage As DocumentStorage)
Dim customData As Object
If documentDetails.CustomData IsNot Nothing AndAlso documentDetails.CustomData.TryGetValue(CustomPageDataService.Key, customData) Then
Dim customDataServiceDictionary As Dictionary(Of Integer, List(Of Integer)) = TryCast(customData, Dictionary(Of Integer, List(Of Integer)))
If customDataServiceDictionary Is Nothing Then Return
Dim customPageDataService = New CustomPageDataService(customDataServiceDictionary)
AddHandler cachedDocumentSource.PrintingSystem.XlSheetCreated, AddressOf customPageDataService.PrintingSystem_XlSheetCreated
End If
End Sub
End Class
End Namespace