JsonGenerator Delegate
A delegate representing a method that encapsulates the JavaScript Object Notation (JSON) generation of a particular entity.
Namespace: Microsoft.SharePoint.JsonUtilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Delegate Function JsonGenerator ( _
s As Serializer _
) As String
'Usage
Dim instance As New JsonGenerator(AddressOf HandlerMethod)
public delegate string JsonGenerator(
Serializer s
)
Parameters
s
Type: Microsoft.SharePoint.JsonUtilities.SerializerThe Serializer object to be used for context in the generation of the JSON for this entity.
Return Value
Type: System.String
The generated JSON string.