QCoapRequest Class▲
-
Header: QCoapRequest
-
qmake: QT += coap
Detailed Description▲
The QCoapRequest contains data needed to make CoAP frames that can be sent to the URL it holds.
See Also▲
See also QCoapClient, QCoapReply, QCoapResourceDiscoveryReply
Member Function Documentation▲
[explicit] QCoapRequest::QCoapRequest(const QUrl &url = QUrl(), int type = ..., const QUrl &proxyUrl = QUrl())▲
Constructs a QCoapRequest object with the target url, the proxy URL proxyUrl and the type of the message.
[explicit] QCoapRequest::QCoapRequest(const char *url, int type = ...)▲
Constructs a QCoapRequest from a string literal
QCoapRequest::QCoapRequest(const QCoapRequest &other)▲
Constructs a copy of the other QCoapRequest.
QCoapRequest::~QCoapRequest()▲
Destroys the QCoapRequest.
void QCoapRequest::enableObserve()▲
bool QCoapRequest::isObserve() const▲
QtCoap::Method QCoapRequest::method() const▲
Returns the method of the request.
QUrl QCoapRequest::proxyUrl() const▲
Returns the proxy URI of the request. The request shall be sent directly if this is invalid.
See Also▲
See also setProxyUrl()
void QCoapRequest::setProxyUrl(const QUrl &proxyUrl)▲
void QCoapRequest::setUrl(const QUrl &url)▲
Sets the target URI of the request to the given url.
If not indicated, the scheme of the URL will default to 'coap', and its port will default to 5683.
See Also▲
See also url()
QUrl QCoapRequest::url() const▲
QCoapRequest &QCoapRequest::operator=(const QCoapRequest &other)▲
Creates a copy of other.