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

A simple implementation of the ExtractListener interface that will listen for words and add them to a list. This allows you to quickly build a list of all of the words on a web page.
Inheritance: IExtractListener
Show file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
FoundData ( Object obj ) : void

Called when a word is found, add it to the list.

Method Details

FoundData() public method

Called when a word is found, add it to the list.
public FoundData ( Object obj ) : void
obj Object The word found.
return void