QDnsTextRecord Class

QDnsTextRecord 类存储有关 DNS TXT 记录的信息。更多

头文件: #include <QDnsTextRecord>
CMake: find_package(Qt6 REQUIRED COMPONENTS Network)
target_link_libraries(mytarget PRIVATE Qt6::Network)
qmake: QT += network

公共函数

QDnsTextRecord()
QDnsTextRecord(const QDnsTextRecord &other)
~QDnsTextRecord()
QString name() const
void swap(QDnsTextRecord &other)
quint32 timeToLive() const
QList<QByteArray> values() const
QDnsTextRecord &operator=(const QDnsTextRecord &other)

详细说明

执行文本查找时,将返回零条或多条记录。每条记录由一个 QDnsTextRecord 实例表示。

字段的含义已在RFC 1035 中定义。

另请参阅 QDnsLookup

成员函数文档

QDnsTextRecord::QDnsTextRecord()

构造一个空文本记录对象。

QDnsTextRecord::QDnsTextRecord(const QDnsTextRecord &other)

构造other 的副本。

[noexcept] QDnsTextRecord::~QDnsTextRecord()

销毁文本记录。

QString QDnsTextRecord::name() const

返回此文本记录的名称。

[noexcept] void QDnsTextRecord::swap(QDnsTextRecord &other)

将此文本记录实例与other 互换。该操作速度非常快,从未出现过故障。

quint32 QDnsTextRecord::timeToLive() const

返回该记录的有效期(以秒为单位)。

QList<QByteArray> QDnsTextRecord::values() const

返回此文本记录的值。

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

other 对象的数据赋值给此记录对象,并返回一个引用。

© 2025 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.