EndDocument Event

Fires when the end of a JSON document is encountered.

Syntax

public event OnEndDocumentHandler OnEndDocument;

public delegate void OnEndDocumentHandler(object sender, JsonEndDocumentEventArgs e);

public class JsonEndDocumentEventArgs : EventArgs {
}
Public Event OnEndDocument As OnEndDocumentHandler

Public Delegate Sub OnEndDocumentHandler(sender As Object, e As JsonEndDocumentEventArgs)

Public Class JsonEndDocumentEventArgs Inherits EventArgs
End Class

Remarks

This event fires when parsing of a JSON document ends. This event may fire multiple times if InputFormat is set to a value which accepts multiple JSON documents.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks IoT 2020 .NET Edition - Version 20.0 [Build 8265]