Create a Request from a string representation of a Uri and a parent Request.

Declaration Syntax

Public Sub New( _
	ByVal uri As String, _
	ByVal parent As Request _
)
public Request(
	string uri,
	Request parent
);
public: Request(
	String uri,
	Request parent
);
public function Request(
	uri : String,
	parent : Request
);

Parameters

uri
The text form of a Uri which this request represents. 
parent
The request which linked to this Uri, or
null
if this is an initial request. 

Requirements

Namespace: Eas.WebCrawler.Interfaces
Assembly: Eas.WebCrawler.Interfaces (eas.webcrawler.interfaces.dll)

See Also

Request Class | Request Members | Eas.WebCrawler.Interfaces Namespace