SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_command_reply Event

Reports the receipt of a reply to a command.

Syntax

class IMAPClientCommandReplyEventParams(object):
  @property
  def cmd() -> str: ...
  @property
  def reply() -> str: ...

# In class IMAPClient:
@property
def on_command_reply() -> Callable[[IMAPClientCommandReplyEventParams], None]: ...
@on_command_reply.setter
def on_command_reply(event_hook: Callable[[IMAPClientCommandReplyEventParams], None]) -> None: ...

Remarks

Use this event to track command replies sent in by the server. Use on_command to track the commands sent out by the client, and on_command_reply_data to access the reply data for commands that assume it.

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