![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
Go to the source code of this file.
Functions | |
| manager | get (request, this, [this](QRestReply &reply) { if(reply.isSuccess()) { } }) |
| [0] | |
| manager | get (request, this, &MyClass::handleFinished) |
| manager | post (request, myJson, this, [this](QRestReply &reply) { if(!reply.isSuccess()) { } if(std::optional json=reply.readJson()) { } }) |
| manager | get (request, this, [this](QRestReply &reply) { if(!reply.isSuccess()) if(std::optional json=reply.readJson()) }) |
| [2] | |
| manager | get (request, myData, this, [this](QRestReply &reply) { if(reply.isSuccess()) }) |
| [3] | |
| manager | post (request, myData, this, [this](QRestReply &reply) { if(reply.isSuccess()) }) |
| [4] | |
| manager | put (request, myData, this, [this](QRestReply &reply) { if(reply.isSuccess()) }) |
| [5] | |
| manager | head (request, this, [this](QRestReply &reply) { if(reply.isSuccess()) }) |
| [6] | |
| manager | deleteResource (request, this, [this](QRestReply &reply) { if(reply.isSuccess()) }) |
| [7] | |
| manager | sendCustomRequest (request, "MYMETHOD", myData, this, [this](QRestReply &reply) { if(reply.isSuccess()) }) |
| [8] | |
| manager | patch (request, myData, this, [this](QRestReply &reply) { if(reply.isSuccess()) }) |
| [9] | |
Variables | |
| QNetworkReply * | reply = manager->get(request) |
| [0] | |
| QJsonDocument | myJson |
| [1] | |
[7]
[8]
[3]
[4]
| manager get | ( | request | , |
| this | , | ||
| &MyClass::handleFinished | ) |
| manager get | ( | request | , |
| this | , | ||
| [this] (QRestReply &reply) { if(!reply.isSuccess()) if(std::optional json=reply.readJson()) } | ) |
[2]
[3]
[9]
[10]
[4]
[5]
| manager post | ( | request | , |
| myJson | , | ||
| this | , | ||
| [this] (QRestReply &reply) { if(!reply.isSuccess()) { } if(std::optional json=reply.readJson()) { } } | ) |
[5]
[6]
| manager sendCustomRequest | ( | request | , |
| "MYMETHOD" | , | ||
| myData | , | ||
| this | , | ||
| [this] (QRestReply &reply) { if(reply.isSuccess()) } | ) |
[8]
[9]
| QJsonDocument myJson |
| QNetworkReply* reply = manager->get(request) |
[0]
Definition at line 5 of file src_network_access_qrestaccessmanager.cpp.