SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_control_receive Event

Fires when data is received via the control channel.

Syntax

class FTPClientControlReceiveEventParams(object):
  @property
  def text_line() -> str: ...

# In class FTPClient:
@property
def on_control_receive() -> Callable[[FTPClientControlReceiveEventParams], None]: ...
@on_control_receive.setter
def on_control_receive(event_hook: Callable[[FTPClientControlReceiveEventParams], None]) -> None: ...

Remarks

TextLine contains the data that was received, which would typically contain a reply to a command (e.g. 200 Command OK).

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