SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_file_error Event

Reports a file access error to the application.

Syntax

class WebDAVServerFileErrorEventParams(object):
  @property
  def connection_id() -> int: ...
  @property
  def file_name() -> str: ...
  @property
  def error_code() -> int: ...

# In class WebDAVServer:
@property
def on_file_error() -> Callable[[WebDAVServerFileErrorEventParams], None]: ...
@on_file_error.setter
def on_file_error(event_hook: Callable[[WebDAVServerFileErrorEventParams], None]) -> None: ...

Remarks

class uses this event to report a file access errors. FileName and ErrorCode contain the file path and the error code respectively.

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