SecureBlackbox 2020 Qt Edition

Questions / Feedback?

OperationError Event

Reports a protocol error.

Syntax

class WebDAVClientOperationErrorEventParams {
public:
  const QString &URL();
  const QString &Status();
  const QString &Error();
  const QString &Description();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void OperationError(WebDAVClientOperationErrorEventParams *e);
// Or, subclass WebDAVClient and override this emitter function. virtual int FireOperationError(WebDAVClientOperationErrorEventParams *e) {...}

Remarks

This event is fired to report a WebDAV protocol error that happened during the data exchange. This is different from Error which reports more general errors out of the scope of WebDAV protocol.

Use ErrorCode to get the error code, and Description for a corresponding textual comment.

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