nClam.ClamClient.ScanFileOnServerMultithreadedAsync C# (CSharp) Method

ScanFileOnServerMultithreadedAsync() public method

Scans a file/directory on the ClamAV Server using multiple threads on the server.
public ScanFileOnServerMultithreadedAsync ( string filePath ) : Task
filePath string Path to the file/directory on the ClamAV server.
return Task
        public Task<ClamScanResult> ScanFileOnServerMultithreadedAsync(string filePath)
        {
            return ScanFileOnServerMultithreadedAsync(filePath, CancellationToken.None);
        }

Same methods

ClamClient::ScanFileOnServerMultithreadedAsync ( string filePath, CancellationToken cancellationToken ) : Task