Changeset 769 for trunk/src/network/access/qnetworkaccessmanager.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/network/access/qnetworkaccessmanager.cpp
r651 r769 108 108 it sends. It contains the proxy and cache configuration, as well as the 109 109 signals related to such issues, and reply signals that can be used to 110 monitor the progress of a network operation. 110 monitor the progress of a network operation. One QNetworkAccessManager 111 should be enough for the whole Qt application. 111 112 112 113 Once a QNetworkAccessManager object has been created, the application can … … 119 120 \snippet doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp 0 120 121 122 121 123 When the \tt replyFinished slot above is called, the parameter it 122 124 takes is the QNetworkReply object containing the downloaded data … … 128 130 deleteLater() function. 129 131 132 133 134 135 136 130 137 A more involved example, assuming the manager is already existent, 131 138 can be: 132 139 \snippet doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp 1 140 141 142 143 144 145 146 147 148 149 133 150 134 151 \sa QNetworkRequest, QNetworkReply, QNetworkProxy … … 550 567 /*! 551 568 Posts a request to obtain the network headers for \a request 552 and returns a new QNetworkReply object which will contain such headers 569 and returns a new QNetworkReply object which will contain such headers 553 570 554 571 The function is named after the HTTP request associated (HEAD).
Note:
See TracChangeset
for help on using the changeset viewer.