Delegate JsonFilterCallback

JsonFilterCallback delegate

Callback used to preprocess and postprocess json before reading and after writing.

public delegate string JsonFilterCallback(string json);
ParameterTypeDescription
jsonStringThe source json text.

Return Value

The processed json text.

See Also