The QNetworkCacheMetaData class provides cache information. More...
| Header: | #include <QNetworkCacheMetaData> | 
              
| CMake: | find_package(Qt6 REQUIRED COMPONENTS Network)target_link_libraries(mytarget PRIVATE Qt6::Network) | 
              
| qmake: | QT += network | 
              
| QNetworkCacheMetaData() | |
| QNetworkCacheMetaData(const QNetworkCacheMetaData &other) | |
| ~QNetworkCacheMetaData() | |
| QNetworkCacheMetaData::AttributesMap | attributes() const | 
| QDateTime | expirationDate() const | 
(since 6.8) QHttpHeaders | 
                headers() const | 
| bool | isValid() const | 
| QDateTime | lastModified() const | 
| QNetworkCacheMetaData::RawHeaderList | rawHeaders() const | 
| bool | saveToDisk() const | 
| void | setAttributes(const QNetworkCacheMetaData::AttributesMap &attributes) | 
| void | setExpirationDate(const QDateTime &dateTime) | 
(since 6.8) void | 
                setHeaders(const QHttpHeaders &headers) | 
| void | setLastModified(const QDateTime &dateTime) | 
| void | setRawHeaders(const QNetworkCacheMetaData::RawHeaderList &list) | 
| void | setSaveToDisk(bool allow) | 
| void | setUrl(const QUrl &url) | 
| void | swap(QNetworkCacheMetaData &other) | 
| QUrl | url() const | 
| bool | operator!=(const QNetworkCacheMetaData &other) const | 
| QNetworkCacheMetaData & | operator=(const QNetworkCacheMetaData &other) | 
| bool | operator==(const QNetworkCacheMetaData &other) const | 
| QDataStream & | operator<<(QDataStream &out, const QNetworkCacheMetaData &metaData) | 
| QDataStream & | operator>>(QDataStream &in, QNetworkCacheMetaData &metaData) | 
QNetworkCacheMetaData provides information about a cache file including the url, when it was last modified, when the cache file was created, headers for file and if the file should be saved onto a disk.
See also QAbstractNetworkCache.
Synonym for QHash<QNetworkRequest::Attribute, QVariant>
Synonym for QPair<QByteArray, QByteArray>
Constructs an invalid network cache meta data.
See also isValid().
Constructs a copy of the other QNetworkCacheMetaData.
[noexcept] QNetworkCacheMetaData::~QNetworkCacheMetaData()Destroys the network cache meta data.
Returns all the attributes stored with this cache item.
See also setAttributes() and QNetworkRequest::Attribute.
Returns the date and time when the meta data expires.
See also setExpirationDate().
[since 6.8] QHttpHeaders QNetworkCacheMetaData::headers() constReturns headers in form of QHttpHeaders that are set in this meta data.
This function was introduced in Qt 6.8.
See also setHeaders().
Returns true if this network cache meta data has attributes that have been set otherwise false.
Returns the date and time when the meta data was last modified.
See also setLastModified().
Returns a list of all raw headers that are set in this meta data. The list is in the same order that the headers were set.
See also setRawHeaders() and headers().
Returns is this cache should be allowed to be stored on disk.
Some cache implementations can keep these cache items in memory for performance reasons, but for security reasons they should not be written to disk.
Specifically with http, documents with Cache-control set to no-store or any https document that doesn't have "Cache-control: public" set will set the saveToDisk to false.
See also setSaveToDisk().
Sets all attributes of this cache item to be the map attributes.
See also attributes() and QNetworkRequest::setAttribute().
Sets the date and time when the meta data expires to dateTime.
See also expirationDate().
[since 6.8] void QNetworkCacheMetaData::setHeaders(const QHttpHeaders &headers)Sets the headers of this network cache meta data to headers.
This function was introduced in Qt 6.8.
See also headers().
Sets the date and time when the meta data was last modified to dateTime.
See also lastModified().
Sets the raw headers to list.
See also rawHeaders() and setHeaders().
Sets whether this network cache meta data and associated content should be allowed to be stored on disk to allow.
See also saveToDisk().
Sets the URL this network cache meta data to be url.
The password and fragment are removed from the url.
See also url().
[noexcept] void QNetworkCacheMetaData::swap(QNetworkCacheMetaData &other)Swaps this metadata instance with other. This operation is very fast and never fails.
Returns the URL this network cache meta data is referring to.
See also setUrl().
Returns true if this meta data is not equal to the other meta data; otherwise returns false.
See also operator==().
Makes a copy of the other QNetworkCacheMetaData and returns a reference to the copy.
Returns true if this meta data is equal to the other meta data; otherwise returns false.
See also operator!=().
Writes metaData to the out stream.
See also Serializing Qt Data Types.
Reads a QNetworkCacheMetaData from the stream in into metaData.
See also Serializing Qt Data Types.