QGIS API Documentation 3.40.0-Bratislava (b56115d8743)
|
Encapsulates parameters and properties of a network request. More...
#include <qgsnetworkaccessmanager.h>
Public Types | |
enum | RequestAttributes { AttributeInitiatorClass = QNetworkRequest::User + 3000 , AttributeInitiatorRequestId } |
Custom request attributes. More... | |
Public Member Functions | |
QgsNetworkRequestParameters ()=default | |
QgsNetworkRequestParameters (QNetworkAccessManager::Operation operation, const QNetworkRequest &request, int requestId, const QByteArray &content=QByteArray()) | |
Constructor for QgsNetworkRequestParameters, with the specified network operation and original request. | |
QByteArray | content () const |
Returns the request's content. | |
QString | initiatorClassName () const |
Returns the class name of the object which initiated this request. | |
QVariant | initiatorRequestId () const |
Returns the internal ID used by the object which initiated this request to identify individual requests. | |
QNetworkAccessManager::Operation | operation () const |
Returns the request operation, e.g. | |
QString | originatingThreadId () const |
Returns a string identifying the thread which the request originated from. | |
QNetworkRequest | request () const |
Returns the network request. | |
int | requestId () const |
Returns a unique ID identifying the request. | |
Encapsulates parameters and properties of a network request.
Definition at line 47 of file qgsnetworkaccessmanager.h.
Custom request attributes.
Enumerator | |
---|---|
AttributeInitiatorClass | Class name of original object which created the request. |
AttributeInitiatorRequestId | Internal ID used by originator object to identify requests. |
Definition at line 52 of file qgsnetworkaccessmanager.h.
|
default |
QgsNetworkRequestParameters::QgsNetworkRequestParameters | ( | QNetworkAccessManager::Operation | operation, |
const QNetworkRequest & | request, | ||
int | requestId, | ||
const QByteArray & | content = QByteArray() |
||
) |
Constructor for QgsNetworkRequestParameters, with the specified network operation and original request.
Definition at line 857 of file qgsnetworkaccessmanager.cpp.
|
inline |
Returns the request's content.
This is only used for POST or PUT operation requests.
Definition at line 96 of file qgsnetworkaccessmanager.h.
|
inline |
Returns the class name of the object which initiated this request.
This is only available for QNetworkRequests which have had the QgsNetworkRequestParameters::AttributeInitiatorClass attribute set.
Definition at line 106 of file qgsnetworkaccessmanager.h.
|
inline |
Returns the internal ID used by the object which initiated this request to identify individual requests.
This is only available for QNetworkRequests which have had the QgsNetworkRequestParameters::AttributeInitiatorRequestId attribute set.
Definition at line 117 of file qgsnetworkaccessmanager.h.
|
inline |
Returns the request operation, e.g.
GET or POST.
Definition at line 72 of file qgsnetworkaccessmanager.h.
|
inline |
Returns a string identifying the thread which the request originated from.
Definition at line 85 of file qgsnetworkaccessmanager.h.
|
inline |
Returns the network request.
This is the original network request sent to QgsNetworkAccessManager, but with QGIS specific configuration options such as proxy handling and SSL exceptions applied.
Definition at line 80 of file qgsnetworkaccessmanager.h.
|
inline |
Returns a unique ID identifying the request.
Definition at line 90 of file qgsnetworkaccessmanager.h.