| Documentation For Encog 2.x |
|
Encog.Bot.Browse.Extract Namespace
Namespace Hierarchy
Classes
| Class |
Description |
|
BasicExtract
|
Implements the basic functionality that most extractors will need to implement. Mostly this involves maintaining a collection of the extraction listeners that will receive events as the extraction occurs. |
|
ExtractWords
|
An extractor that is designed to extract all of the words from a web page. |
|
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. |
Interfaces
| Interface |
Description |
|
IExtract
|
Provides the basic interface that any extractor must support. An extractor is a class that is capable of extracting certain types of data from web data. For example, the ExtractWords extractor is used to extract all of the words from a web page. |
|
IExtractListener
|
The ExtractListener interface defines a class that can receive extraction events as an extraction process occurs. |