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
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.NetRequirements
Namespace: Eas.WebCrawler.PlugIns.UrlProcessedHandlersAssembly: Eas.WebCrawler.PlugIns (eas.webcrawler.plugins.dll)