Parses a returned web page and returns any links found there.

Declaration Syntax

Function GetLinks( _
	ByVal processingState As ProcessingState, _
	ByVal reader As TextReader _
) As IEnumerable`1
IEnumerable`1<Uri> GetLinks(
	ProcessingState processingState, 
	TextReader reader
);
IEnumerable`1 GetLinks(
	ProcessingState processingState, 
	TextReader reader
);
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.Interfaces
Assembly: Eas.WebCrawler.Interfaces (eas.webcrawler.interfaces.dll)

See Also

LinkExtractor Interface | LinkExtractor Members | Eas.WebCrawler.Interfaces Namespace