SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_multiple_files_found Event

Fires if the PGP message is recognized to contain multiple files.

Syntax

class PGPReaderMultipleFilesFoundEventParams(object):
  @property
  def tar_filename() -> str: ...
  @property
  def proceed() -> bool: ...
  @proceed.setter
  def proceed(value) -> None: ...

# In class PGPReader:
@property
def on_multiple_files_found() -> Callable[[PGPReaderMultipleFilesFoundEventParams], None]: ...
@on_multiple_files_found.setter
def on_multiple_files_found(event_hook: Callable[[PGPReaderMultipleFilesFoundEventParams], None]) -> None: ...

Remarks

The class fires this event to report that there is more than one file in the PGP message.

The TarFilename specifies the name of the TAR file containing the files. Tune up Proceed to go ahead or stop the processing.

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