SecureBlackbox 2020 .NET Edition

Questions / Feedback?

Data Event

Supplies a data chunk received from a client.

Syntax

public event OnDataHandler OnData;

public delegate void OnDataHandler(object sender, TlsserverDataEventArgs e);

public class TlsserverDataEventArgs : EventArgs {
  public long ConnectionID { get; }
  public byte[] Buffer { get; }
}
Public Event OnData As OnDataHandler

Public Delegate Sub OnDataHandler(sender As Object, e As TlsserverDataEventArgs)

Public Class TlsserverDataEventArgs Inherits EventArgs
  Public ReadOnly Property ConnectionID As Long
  Public ReadOnly Property Buffer As Byte()
End Class

Remarks

This event is fired to supply another piece of data received from a client. This event may fire multiple times.

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