C# 클래스 Encog.Bot.Browse.Extract.BasicExtract

상속: IExtract
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
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