tags:

views:

965

answers:

3

I would like to use anti virus integration with my .net application when uploading files using the application. Has any anti virus API available for .Net?

A: 

Why not install the antivirus software on the receiving server? That way you could keep the definitions updated, which may not happen on the uploading client app.

Turnkey
+1  A: 

I use ClamWin on my Desktop, and it's built on the open-source Clam AntiVirus libraries: http://www.clamav.net/download/third-party-tools/3rdparty-library/

It looks like they have a couple of differing bindings for .NET:

ClamAv#

WRAVlib

defeated
A: 

Metascan provides an API to integrate many AV packages via .NET

The list of supported AVs is at http://www.opswat.com/products/metascan/supported-applications

punahou1980