QNetworkCacheMetaData Class

The QNetworkCacheMetaData class provides cache information. 更多...

头文件: #include <QNetworkCacheMetaData>
qmake: QT += network
开始支持版本: Qt 4.5

公有类型

typedef AttributesMap
typedef RawHeader
typedef RawHeaderList

公有函数

QNetworkCacheMetaData()
QNetworkCacheMetaData(const QNetworkCacheMetaData &other)
~QNetworkCacheMetaData()
AttributesMap attributes() const
QDateTime expirationDate() const
bool isValid() const
QDateTime lastModified() const
RawHeaderList rawHeaders() const
bool saveToDisk() const
void setAttributes(const AttributesMap &attributes)
void setExpirationDate(const QDateTime &dateTime)
void setLastModified(const QDateTime &dateTime)
void setRawHeaders(const 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=(QNetworkCacheMetaData &&other)
QNetworkCacheMetaData &operator=(const QNetworkCacheMetaData &other)
bool operator==(const QNetworkCacheMetaData &other) const
QDataStream &operator<<(QDataStream &out, const QNetworkCacheMetaData &metaData)
QDataStream &operator>>(QDataStream &in, QNetworkCacheMetaData &metaData)

详细描述

The QNetworkCacheMetaData class provides cache information.

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.

参见 QAbstractNetworkCache.

成员类型

typedef QNetworkCacheMetaData::AttributesMap

Synonym for QHash<QNetworkRequest::Attribute, QVariant>

typedef QNetworkCacheMetaData::RawHeader

Synonym for QPair<QByteArray, QByteArray>

typedef QNetworkCacheMetaData::RawHeaderList

Synonym for QList<RawHeader>

成员函数

QNetworkCacheMetaData::QNetworkCacheMetaData()

Constructs an invalid network cache meta data.

参见 isValid().

QNetworkCacheMetaData::QNetworkCacheMetaData(const QNetworkCacheMetaData &other)

Constructs a copy of the other QNetworkCacheMetaData.

QNetworkCacheMetaData::~QNetworkCacheMetaData()

Destroys the network cache meta data.

AttributesMap QNetworkCacheMetaData::attributes() const

Returns all the attributes stored with this cache item.

This function was introduced in Qt 4.6.

参见 setAttributes() and QNetworkRequest::Attribute.

QDateTime QNetworkCacheMetaData::expirationDate() const

Returns the date and time when the meta data expires.

参见 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.

参见 setLastModified().

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.

参见 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 marked with Pragma: no-cache, or have a Cache-control set to no-store or no-cache or any https document that doesn't have "Cache-control: public" set will set the saveToDisk to false.

参见 setSaveToDisk().

void QNetworkCacheMetaData::setAttributes(const AttributesMap &attributes)

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

This function was introduced in Qt 4.6.

参见 attributes() and QNetworkRequest::setAttribute().

void QNetworkCacheMetaData::setExpirationDate(const QDateTime &dateTime)

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

参见 expirationDate().

void QNetworkCacheMetaData::setLastModified(const QDateTime &dateTime)

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

参见 lastModified().

void QNetworkCacheMetaData::setRawHeaders(const RawHeaderList &list)

Sets the raw headers to list.

参见 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.

参见 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.

参见 url().

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.

参见 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.

参见 operator==().

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

Move-assignment 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.

参见 operator!=().

相关非成员

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

Writes metaData to the out stream.

This function was introduced in Qt 4.5.

参见 Serializing Qt Data Types.

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

Reads a QNetworkCacheMetaData from the stream in into metaData.

This function was introduced in Qt 4.5.

参见 Serializing Qt Data Types.