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

Inheritance: IExtract
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode 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 méthode

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

Distribute() public méthode

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

Extract() public abstract méthode

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

ExtractList() public méthode

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.
Résultat IList

RemoveListener() public méthode

Remove the specified listener.
public RemoveListener ( IExtractListener listener ) : void
listener IExtractListener The listener to rmove.
Résultat void