A function which checks if a page was built with ASP.Net ina way that ASP.Net could be detected.

Declaration Syntax

Public Shared Function IsAspNet( _
	ByVal argument As UrlCompletedEventArgs _
) As Boolean
public static bool IsAspNet(
	UrlCompletedEventArgs argument
);
public: static bool IsAspNet(
	UrlCompletedEventArgs argument
);
public static function IsAspNet(
	argument : UrlCompletedEventArgs
) : Boolean;

Parameters

argument
Details of the processed page which we should check for the presence of ASP.Net 

Return Value

true
if we can detect that the page was built with ASP.Net, otherwise
false
.

Remarks

Please note that it is possible to build a page with ASP.Net but nto leave any tracks, so that we can not detect the use of ASP.Net. We try to check as many things as possible, but in these cases the code acts like as if the page was NOT built with ASP.Net

Requirements

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

See Also

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