webkit-0.11.1: Binding to the Webkit library.

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

Graphics.UI.Gtk.WebKit.NetworkRequest

Contents

Description

The target of a navigation request

Synopsis

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.