NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpBrowserCapabilities.Crawler

Indicates whether the client browser is a Web-crawling search engine.

[Visual Basic]
Overridable Public ReadOnly Property Crawler As Boolean
[C#]
public bool Crawler {virtual get;}
[C++]
public: __property virtual bool get_Crawler();
[JScript]
public function get Crawler() : Boolean;

Property Value

true if the browser client is a search engine; otherwise, false. Default value is false.

Example [Visual Basic]

[Visual Basic]

<%
' This example performs some action only if the client
' is a web crawler search engine.
If Request.Browser.Crawler = True Then
   ...
End If
%>

See Also

HttpBrowserCapabilities Class | HttpBrowserCapabilities Members | System.Web Namespace