Constructs a NameSelector from two selectors and a list of substrings (names).

Declaration Syntax

Public Sub New( _
	ByVal trueSelector As LinkSelector, _
	ByVal falseSelector As LinkSelector, _
	ByVal ParamArray names() As String _
)
public NameSelector(
	LinkSelector trueSelector,
	LinkSelector falseSelector,
	params string[] names
);
public: NameSelector(
	LinkSelector trueSelector,
	LinkSelector falseSelector,
	String names __gc[]
);
public function NameSelector(
	trueSelector : LinkSelector,
	falseSelector : LinkSelector,
	names : String[]
);

Parameters

trueSelector
The selector to call if any of the names are found in the request's Uri. 
falseSelector
The selector to call if none of the names are found in the request's Uri. 
names
The substrings to look for. 

Requirements

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

See Also

NameSelector Class | NameSelector Members | Eas.WebCrawler.PlugIns.Selectors Namespace