SecureBlackbox 2020 C++ Edition

Questions / Feedback?

OperationError Event

Reports a protocol error.

Syntax

ANSI (Cross Platform)
virtual int FireOperationError(WebDAVClientOperationErrorEventParams *e);
typedef struct {
const char *URL;
const char *Status;
const char *Error;
const char *Description; int reserved; } WebDAVClientOperationErrorEventParams; Unicode (Windows) virtual INT FireOperationError(WebDAVClientOperationErrorEventParams *e);
typedef struct {
LPCWSTR URL;
LPCWSTR Status;
LPCWSTR Error;
LPCWSTR Description; INT reserved; } WebDAVClientOperationErrorEventParams;
- (void)onOperationError:(NSString*)URL :(NSString*)status :(NSString*)error :(NSString*)description;
#define EID_WEBDAVCLIENT_OPERATIONERROR 6

virtual INT SECUREBLACKBOX_CALL FireOperationError(LPSTR &lpszURL, LPSTR &lpszStatus, LPSTR &lpszError, LPSTR &lpszDescription);

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 C++ Edition - Version 20.0 [Build 8166]