QWebEngineUrlRequestInfo Class

The QWebEngineUrlRequestInfo class provides information about URL requests. More...

Header: #include <QWebEngineUrlRequestInfo>
Since: Qt 5.6

Public Types

enum NavigationType { NavigationTypeLink, NavigationTypeTyped, NavigationTypeFormSubmitted, NavigationTypeBackForward, NavigationTypeReload, NavigationTypeOther }
enum ResourceType { ResourceTypeMainFrame, ResourceTypeSubFrame, ResourceTypeStylesheet, ResourceTypeScript, ..., ResourceTypeUnknown }

Public Functions

void block(bool shouldBlock)
QUrl firstPartyUrl() const
NavigationType navigationType() const
void redirect(const QUrl &url)
QByteArray requestMethod() const
QUrl requestUrl() const
ResourceType resourceType() const
void setHttpHeader(const QByteArray &name, const QByteArray &value)

Detailed Description

The QWebEngineUrlRequestInfo class provides information about URL requests.

The QWebEngineUrlRequestInfo is useful for setting extra header fields for requests or for redirecting certain requests without payload data to another URL. This class cannot be instantiated or copied by the user, instead it will be created by Qt WebEngine and sent through the virtual function QWebEngineUrlRequestInterceptor::interceptRequest() if an interceptor has been set.

Member Type Documentation

This enum type describes the navigation type of the request:

ConstantValueDescription
QWebEngineUrlRequestInfo::NavigationTypeLink0Navigation initiated by clicking a link.
QWebEngineUrlRequestInfo::NavigationTypeTyped1Navigation explicitly initiated by typing a URL.
QWebEngineUrlRequestInfo::NavigationTypeFormSubmitted2Navigation submits a form.
QWebEngineUrlRequestInfo::NavigationTypeBackForward3Navigation initiated by a history action.
QWebEngineUrlRequestInfo::NavigationTypeReload4Navigation initiated by refreshing the page.
QWebEngineUrlRequestInfo::NavigationTypeOther5None of the above.

enum QWebEngineUrlRequestInfo::ResourceType

This enum type holds the type of the requested resource:

ConstantValueDescription
QWebEngineUrlRequestInfo::ResourceTypeMainFrame0Top level page.
QWebEngineUrlRequestInfo::ResourceTypeSubFrame1Frame or iframe.
QWebEngineUrlRequestInfo::ResourceTypeStylesheet2A CSS stylesheet.
QWebEngineUrlRequestInfo::ResourceTypeScript3An external script.
QWebEngineUrlRequestInfo::ResourceTypeImage4An image (JPG, GIF, PNG, and so on).
QWebEngineUrlRequestInfo::ResourceTypeFontResource5A font.
QWebEngineUrlRequestInfo::ResourceTypeSubResource6An "other" subresource.
QWebEngineUrlRequestInfo::ResourceTypeObject7An object (or embed) tag for a plugin or a resource that a plugin requested.
QWebEngineUrlRequestInfo::ResourceTypeMedia8A media resource.
QWebEngineUrlRequestInfo::ResourceTypeWorker9The main resource of a dedicated worker.
QWebEngineUrlRequestInfo::ResourceTypeSharedWorker10The main resource of a shared worker.
QWebEngineUrlRequestInfo::ResourceTypePrefetch11An explicitly requested prefetch.
QWebEngineUrlRequestInfo::ResourceTypeFavicon12A favicon.
QWebEngineUrlRequestInfo::ResourceTypeXhr13An XMLHttpRequest.
QWebEngineUrlRequestInfo::ResourceTypePing14A ping request for <a ping>.
QWebEngineUrlRequestInfo::ResourceTypeServiceWorker15The main resource of a service worker.
QWebEngineUrlRequestInfo::ResourceTypeCspReport16A report of Content Security Policy (CSP) violations. CSP reports are in JSON format and they are delivered by HTTP POST requests to specified servers. (Added in Qt 5.7)
QWebEngineUrlRequestInfo::ResourceTypePluginResource17A resource requested by a plugin. (Added in Qt 5.7)
QWebEngineUrlRequestInfo::ResourceTypeUnknown255Unknown request type.

Note: For forward compatibility all values not matched should be treated as unknown, not just ResourceTypeUnknown.

Member Function Documentation

void QWebEngineUrlRequestInfo::block(bool shouldBlock)

Blocks this request if shouldBlock is true, so that it will not proceed.

This function can be used to prevent navigating away from a given domain, for example.

QUrl QWebEngineUrlRequestInfo::firstPartyUrl() const

Returns the first party URL of the request. The first party URL is the URL of the page that issued the request.

Returns the navigation type of the request.

See also NavigationType.

void QWebEngineUrlRequestInfo::redirect(const QUrl &url)

Redirects this request to url. It is only possible to redirect requests that do not have payload data, such as GET requests.

QByteArray QWebEngineUrlRequestInfo::requestMethod() const

Returns the HTTP method of the request (for example, GET or POST).

QUrl QWebEngineUrlRequestInfo::requestUrl() const

Returns the requested URL.

ResourceType QWebEngineUrlRequestInfo::resourceType() const

Returns the resource type of the request.

See also ResourceType.

void QWebEngineUrlRequestInfo::setHttpHeader(const QByteArray &name, const QByteArray &value)

Sets the request header name to value for this request.

© 2019 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.