This project is a .Net SDK to work with the Deep Secure Threat Removal API.
dotnet add package DeepSecure.ThreatRemoval
var config = new Config("<url for deep secure instant API>", "Yor API key");
var requester = new Requester(config);
var converter = new ConvertFile(requester);
var path = @"path/to/file.pdf";
var file = File.ReadAllBytes(path);
var response = await converter.Sync(file, MimeType.ApplicationPdf);
var convertedFile = response.File;
Pull requests are always welcome. Please read the contributing guidelines.