.\" This is a wxWidgets manpage page generated from the XML docs .TH wxHTTP 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxHTTP \- HTTP protocol class .SH DESCRIPTION .SH "PARENTS" wxProtocol .SH "INCLUDE FILES" wx/protocol/http.h .SH MEMBERS .SS int GetResponse () Returns the HTTP response code returned by the server. Please refer to the RFC 2616 for the list of the responses. .SS wxInputStream * GetInputStream (const wxString& path) Creates a new input stream on the specified path. You can use all except the seek functionality of wxStream. Seek isn't available on all streams. For example, http or ftp streams doesn't deal with it. Other functions like Tell and SeekI for this sort of stream. You will be notified when the EOF is reached by an error. .SS void SetHeader (const wxString& headerconst wxString& h_data) It sets data of a field to be sent during the next request to the HTTP server. The field name is specified by header and the content by h_data . This is a low level function and it assumes that you know what you are doing. .SS wxString GetHeader (const wxString& header) Returns the data attached with a field whose name is specified by header . If the field doesn't exist, it will return an empty string and not a NULL string. .SH "SEE ALSO" wxProtocol wxSocketBase wxURL .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.