Click or drag to resize

DepScannerScan Method

Starts scan processing. Scan processing of the file-system is internally parallelised, but this method is blocking. Callers may prefer to run this method on a worker thread.

Namespace: Orthogonal.Common.Basic.DepScan
Assembly: Orthogonal.Common.Basic (in Orthogonal.Common.Basic.dll) Version: 2024-04-15 18:00 GMT+10.f27da1471008deaf16b803c17e24a5955690aef1
Syntax
C#
public ScanResult Scan(
	string[]? excludes = null,
	IProgress<string>? progress = null
)

Parameters

excludes  String  (Optional)
An optional array of strings that can be used to exlcude directories and files from the scanning process. If any part of the fully qualified scan file name matches any of the exclude strings then the file is skipped. The comparison is case insensitive.
progress  IProgressString  (Optional)
An optional progress reporting callback.

Return Value

ScanResult
A class containing arrays of information about the relationships between solutions, projects and dependent libraries.
See Also