Class: Wx::WEB::WebViewHandlerRequest
- Inherits:
-
Object
- Object
- Wx::WEB::WebViewHandlerRequest
- Defined in:
- lib/wx/doc/gen/web/web_view_handler.rb
Overview
This class is untracked and should not be derived from nor instances extended!
A class giving access to various parameters of a webview request.
Category: WebView
Instance Method Summary collapse
-
#get_data ⇒ Wx::InputStream
(also: #data)
The body data of the request of null if nothing was posted.
-
#get_data_string(conv = wxConvUTF8) ⇒ String
(also: #data_string)
The body data of the request as a string.
-
#get_header(name) ⇒ String
(also: #header)
Returns a header from the request or an empty string if the header could not be found.
-
#get_method ⇒ String
(also: #method)
The requests HTTP method (e.g. POST, GET, OPTIONS).
-
#get_raw_uri ⇒ String
(also: #raw_uri)
The unmodified url of the request.
-
#get_uri ⇒ String
(also: #uri)
The url of the request.
Instance Method Details
#get_data ⇒ Wx::InputStream Also known as: data
The body data of the request of null if nothing was posted.
213 |
# File 'lib/wx/doc/gen/web/web_view_handler.rb', line 213 def get_data; end |
#get_data_string(conv = wxConvUTF8) ⇒ String Also known as: data_string
The body data of the request as a string. The returned string is empty if the supplied conv doesn't match the encoding.
221 |
# File 'lib/wx/doc/gen/web/web_view_handler.rb', line 221 def get_data_string(conv=wxConvUTF8) end |
#get_header(name) ⇒ String Also known as: header
Returns a header from the request or an empty string if the header could not be found.
234 |
# File 'lib/wx/doc/gen/web/web_view_handler.rb', line 234 def get_header(name) end |
#get_method ⇒ String Also known as: method
The requests HTTP method (e.g. POST, GET, OPTIONS).
228 |
# File 'lib/wx/doc/gen/web/web_view_handler.rb', line 228 def get_method; end |
#get_raw_uri ⇒ String Also known as: raw_uri
The unmodified url of the request.
199 |
# File 'lib/wx/doc/gen/web/web_view_handler.rb', line 199 def get_raw_uri; end |
#get_uri ⇒ String Also known as: uri
The url of the request. Can be modified by the backend for compatibility.
206 |
# File 'lib/wx/doc/gen/web/web_view_handler.rb', line 206 def get_uri; end |