Determines if the contents of the web response is text (like html) or binary (like images and movies).

Declaration Syntax

Public Overridable Function ResponseIsText( _
	ByVal processingState As ProcessingState _
) As Boolean
public virtual bool ResponseIsText(
	ProcessingState processingState
);
public: virtual bool ResponseIsText(
	ProcessingState processingState
);
public function ResponseIsText(
	processingState : ProcessingState
) : Boolean;

Parameters

processingState
A ProcessingState whose WebResponse property has been filled in. 

Return Value

true
if the uri points to text, otherwise
false
.

Requirements

Namespace: Eas.WebCrawler.Model.Gateway
Assembly: Eas.WebCrawler.Model.Gateway (eas.webcrawler.model.gateway.dll)

See Also

BaseWebGateway Class | BaseWebGateway Members | Eas.WebCrawler.Model.Gateway Namespace