-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomDataSerializer.vb
40 lines (34 loc) · 1.68 KB
/
CustomDataSerializer.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
32
33
34
35
36
37
38
39
40
Imports DevExpress.XtraReports.Native
Public Class CustomDataSerializer
Implements IDataSerializer
Public Const Name As String = "myCustomDataSerializer"
Public Function CanDeserialize(
ByVal value As String, ByVal typeName As String,
ByVal extensionProvider As Object
) As Boolean Implements IDataSerializer.CanDeserialize
Return typeName = GetType(CustomParameterType).FullName
End Function
Public Function CanSerialize(
ByVal data As Object,
ByVal extensionProvider As Object
) As Boolean Implements IDataSerializer.CanSerialize
Return TypeOf data Is CustomParameterType
End Function
Public Function Deserialize(
ByVal value As String,
ByVal typeName As String,
ByVal extensionProvider As Object
) As Object Implements IDataSerializer.Deserialize
If typeName = GetType(CustomParameterType).FullName Then
Return New CustomParameterType With {.Value = value}
End If
Return Nothing
End Function
Public Function Serialize(
ByVal data As Object,
ByVal extensionProvider As Object
) As String Implements IDataSerializer.Serialize
Dim parameter = TryCast(data, CustomParameterType)
Return If(parameter IsNot Nothing, parameter.Value, Nothing)
End Function
End Class