C# Class Encog.Bot.Browse.Extract.BasicExtract

Inheritance: IExtract
Show file Open project: encog/encog-silverlight-core

Public Methods

Method Description
AddListener ( IExtractListener listener ) : void

Add a listener for the extraction.

Distribute ( Object obj ) : void

Distribute an object to the listeners.

Extract ( WebPage page ) : void

Extract data from the web page.

ExtractList ( WebPage page ) : IList

Extract from the web page and return the results as a list.

RemoveListener ( IExtractListener listener ) : void

Remove the specified listener.

Method Details

AddListener() public method

Add a listener for the extraction.
public AddListener ( IExtractListener listener ) : void
listener IExtractListener The listener to add.
return void

Distribute() public method

Distribute an object to the listeners.
public Distribute ( Object obj ) : void
obj Object The object to be distributed.
return void

Extract() public abstract method

Extract data from the web page.
public abstract Extract ( WebPage page ) : void
page Encog.Bot.Browse.WebPage The page to extract from.
return void

ExtractList() public method

Extract from the web page and return the results as a list.
public ExtractList ( WebPage page ) : IList
page Encog.Bot.Browse.WebPage The web page to extract from.
return IList

RemoveListener() public method

Remove the specified listener.
public RemoveListener ( IExtractListener listener ) : void
listener IExtractListener The listener to rmove.
return void