GridSerializer.PostProcess property
Gets or sets a delegate to be called after the serialization dataset is fully populated, but before it is actually serialized.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Property PostProcess As Action(Of DataTable)
Get
Set
'Usage
Dim instance As GridSerializer
Dim value As Action(Of DataTable)
value = instance.PostProcess
instance.PostProcess = value
public Action<DataTable> PostProcess { get; set; }
Property value
Type: System.Action<DataTable>
Action<T> is to be called after the serialization data set is fully populated.