Presidio.SDK 0.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Presidio.SDK --version 0.0.1
                    
NuGet\Install-Package Presidio.SDK -Version 0.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Presidio.SDK" Version="0.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Presidio.SDK" Version="0.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Presidio.SDK" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Presidio.SDK --version 0.0.1
                    
#r "nuget: Presidio.SDK, 0.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Presidio.SDK&version=0.0.1
                    
Install Presidio.SDK as a Cake Addin
#tool nuget:?package=Presidio.SDK&version=0.0.1
                    
Install Presidio.SDK as a Cake Tool

Presidio SDK

Unofficial RestEase C# Client for Microsoft Presidio.

⭐ Usage

Register
var configuration = new ConfigurationBuilder()
    .SetBasePath(Directory.GetCurrentDirectory())
    .AddJsonFile("appsettings.json")
    .AddJsonFile("appsettings.Development.json", optional: true)
    .Build();

services.AddPresidioSDK(configuration);

var serviceProvider = services.BuildServiceProvider();

Use Analyzer

IPresidioAnalyzer analyzerService = serviceProvider.GetRequiredService<IPresidioAnalyzer>();

var text =
    """
    Date1: January 04, 2025 at 06:38 PM
    John Smith (john@test.com) lives in 127.0.0.1 and his drivers license is AC432223.
    And for Jane it's AC439999
    """;

       
// Analyze text for PII
var analyzeRequest = new AnalyzeRequest
{
    Text = text,
    Language = "en",
    CorrelationId = Guid.NewGuid().ToString()
};

var analysisResults = await analyzerService.AnalyzeAsync(analyzeRequest, cancellationToken);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Presidio.SDK:

Package Downloads
Presidio.SDK.Extensions

Some extensions for Presidio.SDK (Additional PatternRecognizers)

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.2 0 6/10/2025
0.0.1 137 6/2/2025
0.0.1-preview-03 64 5/31/2025
0.0.1-preview-02 131 5/28/2025
0.0.1-preview-01 126 5/28/2025
0.0.1-preview-00 128 5/27/2025

# 0.0.1 (02 June 2025)
- #4 Remove pattern Operator [enhancement]

The full release notes can be found here: https://github.com/StefH/Presidio.SDK/blob/main/ReleaseNotes.md