Declaration Syntax
Public Shared Function GetStartingUris( _
ByVal ParamArray files() As String _
) As IEnumerable`1
public static IEnumerable`1<string> GetStartingUris(
params string[] files
);
public: static IEnumerable`1 GetStartingUris(
String files __gc[]
);
public static function GetStartingUris(
files : String[]
) : IEnumerable`1;
Parameters
- files
- The files containing the Uris.
Return Value
An enumeration of the Uris in the files.Remarks
The syntax for these files is very simple. Each line must contain one Uri and nothing else, or the line must be a comment. Comments are lines where the first two characters in the line make up a C++ style single-line comment(i.e.//
Requirements
Namespace: Eas.WebCrawler.PlugIns.UrlEnumeratorsAssembly: Eas.WebCrawler.PlugIns (eas.webcrawler.plugins.dll)