QHttpRequestHeader Class Reference |
QHttpRequestHeader () | |
QHttpRequestHeader ( const QString & method, const QString & path, int majorVer = 1, int minorVer = 1 ) | |
QHttpRequestHeader ( const QHttpRequestHeader & header ) | |
QHttpRequestHeader ( const QString & str ) | |
QString | method () const |
QString | path () const |
void | setRequest ( const QString & method, const QString & path, int majorVer = 1, int minorVer = 1 ) |
QHttpRequestHeader & | operator= ( const QHttpRequestHeader & header ) |
virtual int | majorVersion () const |
virtual int | minorVersion () const |
virtual QString | toString () const |
The QHttpRequestHeader class contains request header information for HTTP.
This class is used in the QHttp class to report the header information if the client requests something from the server.
HTTP requests have a method which describes the request's action. The most common requests are "GET" and "POST". In addition to the request method the header also includes a request-URI to specify the location for the method to use.
The method, request-URI and protocol-version can be set using a constructor or later using setRequest(). The values can be obtained using method(), path(), majorVersion() and minorVersion().
Note that the request-URI must be in the format expected by the HTTP server. That is, all reserved characters must be encoded in %HH (where HH are two hexadecimal digits). See QUrl::toPercentEncoding() for more information.
Important inherited functions: setValue() and value().
See also QHttpResponseHeader and QHttp.
Constructs an empty HTTP request header.
Constructs a HTTP request header for the method method, the request-URI path and the protocol-version majorVer and minorVer. The path argument must be properly encoded for an HTTP request.
Constructs a copy of header.
Constructs a HTTP request header from the string str. The str should consist of one or more "\r\n" delimited lines; the first line should be the request-line (format: method, space, request-URI, space HTTP-version); each of the remaining lines should have the format key, colon, space, value.
Reimplemented from QHttpHeader::majorVersion().
Returns the major protocol-version of the HTTP request header.
See also minorVersion(), method(), path(), and setRequest().
Returns the method of the HTTP request header.
See also path(), majorVersion(), minorVersion(), and setRequest().
Reimplemented from QHttpHeader::minorVersion().
Returns the minor protocol-version of the HTTP request header.
See also majorVersion(), method(), path(), and setRequest().
Returns the request-URI of the HTTP request header.
See also method(), majorVersion(), minorVersion(), and setRequest().
This function sets the request method to method, the request-URI to path and the protocol-version to majorVer and minorVer. The path argument must be properly encoded for an HTTP request.
See also method(), path(), majorVersion(), and minorVersion().
Reimplemented from QHttpHeader::toString().
Copies the content of header into this QHttpRequestHeader
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.6-snapshot | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com