Returns a collection of links from a page by applying this class' contained regular expressions to the page and collecting the results.

Declaration Syntax

Public Overridable Function GetLinks( _
	ByVal processingState As ProcessingState, _
	ByVal reader As TextReader _
) As IEnumerable`1
public virtual IEnumerable`1<Uri> GetLinks(
	ProcessingState processingState, 
	TextReader reader
);
public: virtual IEnumerable`1 GetLinks(
	ProcessingState processingState, 
	TextReader reader
);
public function GetLinks(
	processingState : ProcessingState, 
	reader : TextReader
) : IEnumerable`1;

Parameters

processingState
The details of the current request. 
reader
The reader containing the body of the request. 

Return Value

An enumeration of System.Uris found in the body of the web response.

Requirements

Namespace: Eas.WebCrawler.PlugIns.LinkExtractors
Assembly: Eas.WebCrawler.PlugIns (eas.webcrawler.plugins.dll)

See Also

RegularExpressionLinkExtractor Class | RegularExpressionLinkExtractor Members | Eas.WebCrawler.PlugIns.LinkExtractors Namespace