C# Class Mono.WebKit.WebBrowser

Inheritance: IDisposable, IWebBrowser, INavigation
Afficher le fichier Open project: mono/mono-webbrowser

Méthodes publiques

Méthode Description
Activate ( ) : void
Back ( ) : bool
Deactivate ( ) : void
Dispose ( ) : void
ExecuteScript ( string s ) : void
FocusIn ( FocusOption focus ) : void
FocusOut ( ) : void
Forward ( ) : bool
Go ( int index ) : void

Navigate to the page in the history, by index.

Go ( int index, bool relative ) : void

Go ( string url ) : void

Navigate to an Url. Uses default loading flags, so the page might come from cache

Go ( string url, LoadFlags flags ) : void

Home ( ) : void
Load ( IntPtr handle, int width, int height ) : bool

Initialize a browser instance.

Reload ( ) : void
Reload ( ReloadOption option ) : void
Render ( byte data ) : void
Render ( string html ) : void
Render ( string html, string uri, string contentType ) : void
Resize ( int width, int height ) : void
Shutdown ( ) : void
Stop ( ) : void
WebBrowser ( ) : System

Private Methods

Méthode Description
Dispose ( bool disposing ) : void
InitializeWindow ( object _sender, EventArgs ev ) : void
OnAlert ( ) : void
OnBlur ( ) : void
OnContextMenuShown ( ) : void
OnCreateNewWindow ( ) : void
OnFocus ( ) : void
OnKeyDown ( ) : void
OnKeyPress ( ) : void
OnKeyUp ( ) : void
OnLoadCommited ( string uri ) : void
OnLoadFinished ( ) : void
OnLoadStarted ( string uri, string frameName ) : void
OnLoaded ( ) : void
OnMouseClick ( ) : void
OnMouseDoubleClick ( ) : void
OnMouseDown ( ) : void
OnMouseEnter ( ) : void
OnMouseLeave ( ) : void
OnMouseMove ( ) : void
OnMouseUp ( ) : void
OnProgressChanged ( int progress, int maxProgress ) : void
OnSecurityChanged ( SecurityLevel state ) : void
OnStatusChanged ( string message, int status ) : void
OnUnloaded ( ) : void

Method Details

Activate() public méthode

public Activate ( ) : void
Résultat void

Back() public méthode

public Back ( ) : bool
Résultat bool

Deactivate() public méthode

public Deactivate ( ) : void
Résultat void

Dispose() public méthode

public Dispose ( ) : void
Résultat void

ExecuteScript() public méthode

public ExecuteScript ( string s ) : void
s string
Résultat void

FocusIn() public méthode

public FocusIn ( FocusOption focus ) : void
focus FocusOption
Résultat void

FocusOut() public méthode

public FocusOut ( ) : void
Résultat void

Forward() public méthode

public Forward ( ) : bool
Résultat bool

Go() public méthode

Navigate to the page in the history, by index.
public Go ( int index ) : void
index int /// A representing an absolute index in the /// history (that is, > -1 and < history length ///
Résultat void

Go() public méthode

public Go ( int index, bool relative ) : void
index int /// A representing an index in the /// history, that can be relative or absolute depending on the relative argument ///
relative bool /// A indicating whether the index is relative to /// the current place in history or not (i.e., if relative = true, index can be /// positive or negative, and index=-1 means load the previous page in the history. /// if relative = false, index must be > -1, and index = 0 means load the first /// page of the history. ///
Résultat void

Go() public méthode

Navigate to an Url. Uses default loading flags, so the page might come from cache
public Go ( string url ) : void
url string /// A representing an Url ///
Résultat void

Go() public méthode

public Go ( string url, LoadFlags flags ) : void
url string /// A representing an Url. ///
flags LoadFlags /// A that control if the page comes from cache or not. ///
Résultat void

Home() public méthode

public Home ( ) : void
Résultat void

Load() public méthode

Initialize a browser instance.
public Load ( IntPtr handle, int width, int height ) : bool
handle System.IntPtr /// A to the native window handle of the widget /// where the browser engine will draw ///
width int /// A . Initial width ///
height int /// A . Initial height ///
Résultat bool

Reload() public méthode

public Reload ( ) : void
Résultat void

Reload() public méthode

public Reload ( ReloadOption option ) : void
option ReloadOption
Résultat void

Render() public méthode

public Render ( byte data ) : void
data byte
Résultat void

Render() public méthode

public Render ( string html ) : void
html string
Résultat void

Render() public méthode

public Render ( string html, string uri, string contentType ) : void
html string
uri string
contentType string
Résultat void

Resize() public méthode

public Resize ( int width, int height ) : void
width int
height int
Résultat void

Shutdown() public méthode

public Shutdown ( ) : void
Résultat void

Stop() public méthode

public Stop ( ) : void
Résultat void

WebBrowser() public méthode

public WebBrowser ( ) : System
Résultat System