C# Class Bloom.IsolatedBrowser

This class is the real implementation of IIsolatedBrowser. Keep this code as simple as possible since it can't adequately be tested.
Inheritance: IIsolatedBrowser
Show file Open project: BloomBooks/BloomDesktop

Public Methods

Method Description
Equals ( object obj ) : bool

Check whether the specified object is an IsolatedBrowser that points to the same GeckoWebBrowser underneath.

InstallEventHandlers ( ) : void
IsolatedBrowser ( Gecko.GeckoWebBrowser browser ) : System
Navigate ( string url ) : void
RemoveEventHandlers ( ) : void

Private Methods

Method Description
RaiseDocumentCompleted ( object sender, Gecko.Events.GeckoDocumentCompletedEventArgs args ) : void
RaiseNavigated ( object sender, Gecko.GeckoNavigatedEventArgs args ) : void

Method Details

Equals() public method

Check whether the specified object is an IsolatedBrowser that points to the same GeckoWebBrowser underneath.
public Equals ( object obj ) : bool
obj object
return bool

InstallEventHandlers() public method

public InstallEventHandlers ( ) : void
return void

IsolatedBrowser() public method

public IsolatedBrowser ( Gecko.GeckoWebBrowser browser ) : System
browser Gecko.GeckoWebBrowser
return System

Navigate() public method

public Navigate ( string url ) : void
url string
return void

RemoveEventHandlers() public method

public RemoveEventHandlers ( ) : void
return void