Status Event

Fired when the HTTP status line is received from the server.

Syntax

class OAuthStatusEventParams {
public:
  const QString &HTTPVersion();
  int StatusCode();
  const QString &Description();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void Status(OAuthStatusEventParams *e);
// Or, subclass OAuth and override this emitter function. virtual int FireStatus(OAuthStatusEventParams *e) {...}

Remarks

HTTPVersion is a string containing the HTTP version string as returned from the server (e.g. "1.1").

StatusCode contains the HTTP status code (e.g. 200), and Description the associated message returned by the server (e.g. "OK").

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