Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
src_network_access_qrestaccessmanager.cpp File Reference

(26993046283605a806f34ba604e7dcef20f34ba5)

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

QNetworkReplyreply = manager->get(request)
 [0]
 
QJsonDocument myJson
 [1]
 

Function Documentation

◆ deleteResource()

manager deleteResource ( request ,
this ,
[this] (QRestReply &reply) { if(reply.isSuccess()) }  )

[7]

[8]

References reply.

◆ get() [1/4]

manager get ( request ,
myData ,
this ,
[this] (QRestReply &reply) { if(reply.isSuccess()) }  )

[3]

[4]

References reply.

◆ get() [2/4]

manager get ( request ,
this ,
&MyClass::handleFinished  )

◆ get() [3/4]

manager get ( request ,
this ,
[this] (QRestReply &reply) { if(!reply.isSuccess()) if(std::optional json=reply.readJson()) }  )

[2]

[3]

References reply.

◆ get() [4/4]

manager get ( request ,
this ,
[this] (QRestReply &reply) { if(reply.isSuccess()) { } }  )

[0]

[1]

References reply.

◆ head()

◆ patch()

manager patch ( request ,
myData ,
this ,
[this] (QRestReply &reply) { if(reply.isSuccess()) }  )

[9]

[10]

References reply.

Referenced by deserializeInternal(), and fill9patchOffsets().

+ Here is the caller graph for this function:

◆ post() [1/2]

manager post ( request ,
myData ,
this ,
[this] (QRestReply &reply) { if(reply.isSuccess()) }  )

[4]

[5]

References reply.

◆ post() [2/2]

manager post ( request ,
myJson ,
this ,
[this] (QRestReply &reply) { if(!reply.isSuccess()) { } if(std::optional json=reply.readJson()) { } }  )

◆ put()

manager put ( request ,
myData ,
this ,
[this] (QRestReply &reply) { if(reply.isSuccess()) }  )

[5]

[6]

References reply.

Referenced by QV4Include::method_include(), and QV4::Object::putIndexed().

+ Here is the caller graph for this function:

◆ sendCustomRequest()

manager sendCustomRequest ( request ,
"MYMETHOD" ,
myData ,
this ,
[this] (QRestReply &reply) { if(reply.isSuccess()) }  )

[8]

[9]

References reply.

Variable Documentation

◆ myJson

QJsonDocument myJson

[1]

[2]

Definition at line 28 of file src_network_access_qrestaccessmanager.cpp.

◆ reply