Philterd.Philter.Client
1.3.1
dotnet add package Philterd.Philter.Client --version 1.3.1
NuGet\Install-Package Philterd.Philter.Client -Version 1.3.1
<PackageReference Include="Philterd.Philter.Client" Version="1.3.1" />
paket add Philterd.Philter.Client --version 1.3.1
#r "nuget: Philterd.Philter.Client, 1.3.1"
// Install Philterd.Philter.Client as a Cake Addin #addin nuget:?package=Philterd.Philter.Client&version=1.3.1 // Install Philterd.Philter.Client as a Cake Tool #tool nuget:?package=Philterd.Philter.Client&version=1.3.1
Philter SDK for .NET
The Philter SDK for .NET is a client for de-identifying and redacting text using Philter. Refer to the Philter API documentation for details on the methods available.
Build
The project can be built using Visual Studio or other .NET IDE. It can be built via the command line using either the build.bat
or build.sh
scripts depending on your platform.
Usage
Install using NuGet.
Or, clone and import the project into your solution.
git clone https://github.com/philterd/philter-sdk-net.git
With an available running instance of Philter, to filter text:
PhilterClient client = new PhilterClient("https://127.0.0.1:8080");
string filteredText = client.Filter(text);
To filter text with explanation:
PhilterClient client = new PhilterClient("https://127.0.0.1:8080");
ExplainResponse explainResponse = client.Explain(text);
Release History
- 1.2.0 - Renamed filter profiles to policies. Updated to .NET 7.0.
- 1.1.0 - Added authentication support.
- 1.0.0 - Initial release.
License
This project is licensed under the Apache License, version 2.0.
Copyright 2023 Philterd, LLC Philter is a registered trademark of Mountain Fog, Inc.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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 was computed. 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. |
-
net7.0
- Newtonsoft.Json (>= 13.0.3)
- RestSharp (>= 110.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
See https://github.com/philterd/philter-sdk-net for a list of changes.