Click or drag to resize

Scanner Constructor

Constructs a solution scanner.

Namespace: Orthogonal.Common.Basic.DepScan
Assembly: Orthogonal.Common.Basic (in Orthogonal.Common.Basic.dll) Version: 3.2.4
Syntax
C#
public Scanner(
	DirectoryInfo ScanDir,
	IProgress<string>? progress = null
)

Parameters

ScanDir  DirectoryInfo
The base folder for scan processing.
progress  IProgress<String>  (Optional)
An optional Progress<T> implementation to receive scan progress callbacks.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if ScanDir is null.
DirectoryNotFoundExceptionThrown if the ScanDir does not exist.
See Also