Handles the UrlProcessed event fired by the web crawler when registered to do so.

Declaration Syntax

Public Overridable Sub UrlProcessed( _
	ByVal sender As Object, _
	ByVal argument As UrlCompletedEventArgs _
)
public virtual void UrlProcessed(
	object sender, 
	UrlCompletedEventArgs argument
);
public: virtual void UrlProcessed(
	Object sender, 
	UrlCompletedEventArgs argument
);
public function UrlProcessed(
	sender : Object, 
	argument : UrlCompletedEventArgs
);

Parameters

sender
The sender of the event. 
argument
Details of the processed url. 

Remarks

This implementation saves out the visited url to a file.

Requirements

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

See Also

VisitedListCreatingUrlProcessor Class | VisitedListCreatingUrlProcessor Members | Eas.WebCrawler.PlugIns.UrlProcessedHandlers Namespace