IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QNetworkCacheMetaData Class

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QNetworkCacheMetaData Class

  • Header: QNetworkCacheMetaData

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Network)

    target_link_libraries(mytarget PRIVATE Qt6::Network)

  • qmake: QT += network

  • Group: QNetworkCacheMetaData is part of shared

Detailed Description

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

Member Type Documentation

 

QNetworkCacheMetaData::AttributesMap

QNetworkCacheMetaData::RawHeader

Synonym for QPair<QByteArray, QByteArray>

QNetworkCacheMetaData::RawHeaderList

Synonym for QList<RawHeader>

Member Function Documentation

 

QNetworkCacheMetaData::QNetworkCacheMetaData()

Constructs an invalid network cache meta data.

See Also

See also isValid()

QNetworkCacheMetaData::QNetworkCacheMetaData(const QNetworkCacheMetaData &other)

Constructs a copy of the other QNetworkCacheMetaData.

QNetworkCacheMetaData::~QNetworkCacheMetaData()

Destroys the network cache meta data.

QNetworkCacheMetaData::AttributesMap QNetworkCacheMetaData::attributes() const

Returns all the attributes stored with this cache item.

See Also

QDateTime QNetworkCacheMetaData::expirationDate() const

Returns the date and time when the meta data expires.

See Also

See also setExpirationDate()

bool QNetworkCacheMetaData::isValid() const

Returns true if this network cache meta data has attributes that have been set otherwise false.

QDateTime QNetworkCacheMetaData::lastModified() const

Returns the date and time when the meta data was last modified.

See Also

See also setLastModified()

QNetworkCacheMetaData::RawHeaderList QNetworkCacheMetaData::rawHeaders() const

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

See also setRawHeaders()

bool QNetworkCacheMetaData::saveToDisk() const

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

See also setSaveToDisk()

void QNetworkCacheMetaData::setAttributes(const QNetworkCacheMetaData::AttributesMap &attributes)

Sets all attributes of this cache item to be the map attributes.

See Also

void QNetworkCacheMetaData::setExpirationDate(const QDateTime &dateTime)

Sets the date and time when the meta data expires to dateTime.

See Also

See also expirationDate()

void QNetworkCacheMetaData::setLastModified(const QDateTime &dateTime)

Sets the date and time when the meta data was last modified to dateTime.

See Also

See also lastModified()

void QNetworkCacheMetaData::setRawHeaders(const QNetworkCacheMetaData::RawHeaderList &list)

Sets the raw headers to list.

See Also

See also rawHeaders()

void QNetworkCacheMetaData::setSaveToDisk(bool allow)

Sets whether this network cache meta data and associated content should be allowed to be stored on disk to allow.

See Also

See also saveToDisk()

void QNetworkCacheMetaData::setUrl(const QUrl &url)

Sets the URL this network cache meta data to be url.

The password and fragment are removed from the url.

See Also

See also url()

[since 5.0] void QNetworkCacheMetaData::swap(QNetworkCacheMetaData &other)

Swaps this metadata instance with other. This function is very fast and never fails.

This function was introduced in Qt 5.0.

QUrl QNetworkCacheMetaData::url() const

Returns the URL this network cache meta data is referring to.

See Also

See also setUrl()

bool QNetworkCacheMetaData::operator!=(const QNetworkCacheMetaData &other) const

Returns true if this meta data is not equal to the other meta data; otherwise returns false.

See Also

See also operator==()

QNetworkCacheMetaData &QNetworkCacheMetaData::operator=(const QNetworkCacheMetaData &other)

Makes a copy of the other QNetworkCacheMetaData and returns a reference to the copy.

bool QNetworkCacheMetaData::operator==(const QNetworkCacheMetaData &other) const

Returns true if this meta data is equal to the other meta data; otherwise returns false.

See Also

See also operator!=()

Related Non-Members

 

QDataStream &operator<<(QDataStream &out, const QNetworkCacheMetaData &metaData)

Writes metaData to the out stream.

See Also

QDataStream &operator>>(QDataStream &in, QNetworkCacheMetaData &metaData)

Reads a QNetworkCacheMetaData from the stream in into metaData.

See Also

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+