Presidio.SDK
0.0.1
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
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" />
<PackageReference Include="Presidio.SDK" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=Presidio.SDK&version=0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
.NETStandard 2.1
- Microsoft.Extensions.Http.Polly (>= 3.1.0)
- RestEase.HttpClientFactory (>= 1.6.4)
- Stef.Validation.Options (>= 0.1.1)
-
net6.0
- Microsoft.Extensions.Configuration.Binder (>= 6.0.1)
- Microsoft.Extensions.Http.Polly (>= 6.0.36)
- RestEase.HttpClientFactory (>= 1.6.4)
- Stef.Validation.Options (>= 0.1.1)
-
net8.0
- Microsoft.Extensions.Http.Polly (>= 8.0.16)
- RestEase.HttpClientFactory (>= 1.6.4)
- Stef.Validation.Options (>= 0.1.1)
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