:
An easy to understand guide to learn how to sensitive data detector in C#. ByteScout PDF Extractor SDK helps with sensitive data detector in C#. ByteScout PDF Extractor SDK is the SDK is designed to help developers with pdf tables and pdf data extraction from unstructured documents like pdf, tiff, scans, images, scanned and electronic forms. The library is powered by OCR, computer vision and AI to provide unique functionality like table detection, automatic table structure extraction, data restoration, data restructuring and reconstruction. Supports PDF, TIFF, PNG, JPG images as input and can output CSV, XML, JSON formatted data. Includes full set of utilities like pdf splitter, pdf merger, searchable pdf maker and other utilities.
This rich and prolific sample source code in C# for ByteScout PDF Extractor SDK contains various functions and options you should do calling the API to implement sensitive data detector. Just copy and paste this C# sample code to your C# application’s code editor, add a reference to ByteScout PDF Extractor SDK (if you haven’t added yet) and you are ready to go! This basic programming language sample code for C# will do the whole work for you in implementing sensitive data detector in your app.
Our website gives free trial version of ByteScout PDF Extractor SDK. It includes all these source code samples with the purpose to assist you with your C# application implementation.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
using System; using System.Drawing; using Bytescout.PDFExtractor; namespace SensitiveDataDetectorDemo { class Program { static void Main(string[] args) { // Create Bytescout.PDFExtractor.SensitiveDataDetector instance SensitiveDataDetector sensitiveDataDetector = new SensitiveDataDetector(); sensitiveDataDetector.RegistrationName = "demo"; sensitiveDataDetector.RegistrationKey = "demo"; // Load sample PDF document sensitiveDataDetector.LoadDocumentFromFile(@".\samplePDF_EmailSSN.pdf"); // Set the location of OCR language data files sensitiveDataDetector.OCRLanguageDataFolder = @"c:\Program Files\Bytescout PDF Extractor SDK\ocrdata_fast\"; // Perform detecting sensitive data SensitiveDataDetectionResults detectionResults = sensitiveDataDetector.PerformDetection(); // Generate Report string report = sensitiveDataDetector.GenerateReport(detectionResults, SensitiveDataReportFormat.TXT); Console.WriteLine(report); // Cleanup sensitiveDataDetector.Dispose(); Console.WriteLine(); Console.WriteLine("Press any key to continue..."); Console.ReadLine(); } } }
60 Day Free Trial or Visit ByteScout PDF Extractor SDK Home Page
Explore ByteScout PDF Extractor SDK Documentation
Explore Samples
Sign Up for ByteScout PDF Extractor SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout PDF Extractor SDK Home Page
Explore ByteScout PDF Extractor SDK Documentation
Explore Samples
Sign Up for ByteScout PDF Extractor SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: