Documentation
¶
Index ¶
Constants ¶
View Source
const ( HeaderContentLength = "Content-Length" HeaderContentType = "Content-Type" )
View Source
const Webkit2MinMinorVersion = 0
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Request ¶
type Request interface {
URL() (string, error)
Method() (string, error)
Header() (http.Header, error)
Body() (io.ReadCloser, error)
Response() ResponseWriter
Close() error
}
func NewRequest ¶ added in v2.5.0
NewRequest creates as new WebViewRequest based on a pointer to an `WebKitURISchemeRequest`
type ResponseWriter ¶
type ResponseWriter interface {
http.ResponseWriter
// Finish the response and flush all data. A Finish after the request has already been finished has no effect.
Finish() error
}
A ResponseWriter interface is used by an HTTP handler to construct an HTTP response for the WebView.
Click to show internal directories.
Click to hide internal directories.