JSON Event

Fires with the JSON data being written.

Syntax

public event OnJSONHandler OnJSON;

public delegate void OnJSONHandler(object sender, JsonJSONEventArgs e);

public class JsonJSONEventArgs : EventArgs {
  public string Text { get; }
}
Public Event OnJSON As OnJSONHandler

Public Delegate Sub OnJSONHandler(sender As Object, e As JsonJSONEventArgs)

Public Class JsonJSONEventArgs Inherits EventArgs
  Public ReadOnly Property Text As String
End Class

Remarks

This event fires when output data is written.

Text contains the JSON data currently being written.

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