C# Класс Encog.Bot.Browse.Extract.BasicExtract

Наследование: IExtract
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

AddListener() публичный Метод

Add a listener for the extraction.
public AddListener ( IExtractListener listener ) : void
listener IExtractListener The listener to add.
Результат void

Distribute() публичный Метод

Distribute an object to the listeners.
public Distribute ( Object obj ) : void
obj Object The object to be distributed.
Результат void

Extract() публичный абстрактный Метод

Extract data from the web page.
public abstract Extract ( WebPage page ) : void
page Encog.Bot.Browse.WebPage The page to extract from.
Результат void

ExtractList() публичный Метод

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.
Результат IList

RemoveListener() публичный Метод

Remove the specified listener.
public RemoveListener ( IExtractListener listener ) : void
listener IExtractListener The listener to rmove.
Результат void