Implemented by derived classes to determine which factory to use.

Declaration Syntax

Protected MustOverride Function ConditionalCheck( _
	ByVal processingState As ProcessingState _
) As Boolean
protected abstract bool ConditionalCheck(
	ProcessingState processingState
);
protected: virtual bool ConditionalCheck(
	ProcessingState processingState
) = 0;
protected abstract function ConditionalCheck(
	processingState : ProcessingState
) : Boolean;

Parameters

processingState
The details of the current request. 

Return Value

true
to use the trueFactory in this request, otherwise
false
to use the falseFactory.

Requirements

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

See Also

ConditionalStorageFactory Class | ConditionalStorageFactory Members | Eas.WebCrawler.PlugIns.TemporaryStorage Namespace