⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qnetworkoperation.3qt

📁 Linux下的基于X11的图形开发环境。
💻 3QT
字号:
'\" t.TH QNetworkOperation 3qt "9 December 2002" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQNetworkOperation \- Common operations for network protocols.SH SYNOPSIS\fC#include <qnetworkprotocol.h>\fR.PPInherits QObject..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQNetworkOperation\fR ( QNetworkProtocol::Operation operation, const QString & arg0, const QString & arg1, const QString & arg2 )".br.ti -1c.BI "\fBQNetworkOperation\fR ( QNetworkProtocol::Operation operation, const QByteArray & arg0, const QByteArray & arg1, const QByteArray & arg2 )".br.ti -1c.BI "\fB~QNetworkOperation\fR ()".br.ti -1c.BI "void \fBsetState\fR ( QNetworkProtocol::State state )".br.ti -1c.BI "void \fBsetProtocolDetail\fR ( const QString & detail )".br.ti -1c.BI "void \fBsetErrorCode\fR ( int ec )".br.ti -1c.BI "void \fBsetArg\fR ( int num, const QString & arg )".br.ti -1c.BI "void \fBsetRawArg\fR ( int num, const QByteArray & arg )".br.ti -1c.BI "QNetworkProtocol::Operation \fBoperation\fR () const".br.ti -1c.BI "QNetworkProtocol::State \fBstate\fR () const".br.ti -1c.BI "QString \fBarg\fR ( int num ) const".br.ti -1c.BI "QByteArray \fBrawArg\fR ( int num ) const".br.ti -1c.BI "QString \fBprotocolDetail\fR () const".br.ti -1c.BI "int \fBerrorCode\fR () const".br.ti -1c.BI "void \fBfree\fR ()".br.in -1c.SH DESCRIPTIONThe QNetworkOperation class provides common operations for network protocols..PPAn object is created to describe the operation and the current state for each operation that a network protocol should process..PPFor a detailed description of the Qt Network Architecture and how to implement and use network protocols in Qt, see the Qt Network Documentation..PPSee also QNetworkProtocol and Input/Output and Networking..SH MEMBER FUNCTION DOCUMENTATION.SH "QNetworkOperation::QNetworkOperation ( QNetworkProtocol::Operation operation, const QString & arg0, const QString & arg1, const QString & arg2 )"Constructs a network operation object. \fIoperation\fR is the type of the operation, and \fIarg0\fR, \fIarg1\fR and \fIarg2\fR are the first three arguments of the operation. The state is initialized to QNetworkProtocol::StWaiting..PPSee also QNetworkProtocol::Operation and QNetworkProtocol::State..SH "QNetworkOperation::QNetworkOperation ( QNetworkProtocol::Operation operation, const QByteArray & arg0, const QByteArray & arg1, const QByteArray & arg2 )"Constructs a network operation object. \fIoperation\fR is the type of the operation, and \fIarg0\fR, \fIarg1\fR and \fIarg2\fR are the first three raw data arguments of the operation. The state is initialized to QNetworkProtocol::StWaiting..PPSee also QNetworkProtocol::Operation and QNetworkProtocol::State..SH "QNetworkOperation::~QNetworkOperation ()"Destructor..SH "QString QNetworkOperation::arg ( int num ) const"Returns the operation's \fInum\fR-th argument. If this argument was not already set, an empty string is returned..PPExample: network/networkprotocol/nntp.cpp..SH "int QNetworkOperation::errorCode () const"Returns the error code for the last error that occurred..SH "void QNetworkOperation::free ()"Sets this object to delete itself when it hasn't been used for one second..PPBecause QNetworkOperation pointers are passed around a lot the QNetworkProtocol generally does not have enough knowledge to delete these at the correct time. If a QNetworkProtocol doesn't need an operation any more it will call this function instead..PPNote: you should never need to call the method yourself..SH "QNetworkProtocol::Operation QNetworkOperation::operation () const"Returns the type of the operation..SH "QString QNetworkOperation::protocolDetail () const"Returns a detailed error message for the last error. This must have been set using setProtocolDetail()..SH "QByteArray QNetworkOperation::rawArg ( int num ) const"Returns the operation's \fInum\fR-th raw data argument. If this argument was not already set, an empty bytearray is returned..SH "void QNetworkOperation::setArg ( int num, const QString & arg )"Sets the network operation's \fInum\fR-th argument to \fIarg\fR..SH "void QNetworkOperation::setErrorCode ( int ec )"Sets the error code to \fIec\fR..PPIf the operation failed, the protocol should set an error code to describe the error in more detail. If possible, one of the error codes defined in QNetworkProtocol should be used..PPSee also setProtocolDetail() and QNetworkProtocol::Error..SH "void QNetworkOperation::setProtocolDetail ( const QString & detail )"If the operation failed, the error message can be specified as \fIdetail\fR..SH "void QNetworkOperation::setRawArg ( int num, const QByteArray & arg )"Sets the network operation's \fInum\fR-th raw data argument to \fIarg\fR..SH "void QNetworkOperation::setState ( QNetworkProtocol::State state )"Sets the \fIstate\fR of the operation object. This should be done by the network protocol during processing; at the end it should be set to QNetworkProtocol::StDone or QNetworkProtocol::StFailed, depending on success or failure..PPSee also QNetworkProtocol::State..SH "QNetworkProtocol::State QNetworkOperation::state () const"Returns the state of the operation. You can determine whether anoperation is still waiting to be processed, is being processed,has been processed successfully, or failed..SH "SEE ALSO".BR http://doc.trolltech.com/qnetworkoperation.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qnetworkoperation.3qt) and the Qtversion (3.1.1).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -