webkit-0.12.4: Binding to the Webkit library.

Portabilityportable (depends on GHC)
Stabilityprovisional
Maintainergtk2hs-users@lists.sourceforge.net
Safe HaskellSafe-Infered

Graphics.UI.Gtk.WebKit.NetworkRequest

Contents

Description

The target of a navigation request

Synopsis

Description

This class represents the network related aspects of a navigation request. It is used whenever WebKit wants to provide information about a request that will be sent, or has been sent. Inside it you can find the URI of the request, and, for valid URIs, a SoupMessage object, which provides access to further information such as headers.

Types

Constructors

networkRequestNewSource

Arguments

:: String

uri - the uri of the request

-> IO NetworkRequest 

Create a new NetworkRequest with the given uri.

It is used whenever WebKit wants to provide information about a request that will be sent, or has been sent.

Methods

networkRequestSetUriSource

Arguments

:: NetworkRequestClass self 
=> self 
-> String

uri - the uri will be set to the request.

-> IO () 

Set the URI of NetworkRequest.

networkRequestGetUriSource

Arguments

:: NetworkRequestClass self 
=> self 
-> IO (Maybe String)

the URI or Nothing in case failed.

Return the uri of NetworkRequest.