ClaimsTransformation.Language 0.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package ClaimsTransformation.Language --version 0.0.4
NuGet\Install-Package ClaimsTransformation.Language -Version 0.0.4
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="ClaimsTransformation.Language" Version="0.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ClaimsTransformation.Language --version 0.0.4
#r "nuget: ClaimsTransformation.Language, 0.0.4"
#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.
// Install ClaimsTransformation.Language as a Cake Addin
#addin nuget:?package=ClaimsTransformation.Language&version=0.0.4

// Install ClaimsTransformation.Language as a Cake Tool
#tool nuget:?package=ClaimsTransformation.Language&version=0.0.4

ClaimsTransformation

An implementation of the ADFS claims transformation language for .NET

Some informations exist;

Here is a usage example;

//Setup (this can be done once)
var parser = new ClaimsTransformationParser();
var cache = new ClaimsTransformationCache();
var engine = new ClaimsTransformationEngine(parser, cache);

var expression =
  @"C1:[] " +
  @"=> ISSUE(TYPE = ""http://namespace/role"", VALUE = ""Public"");";

//Read these claims from your authentication token.
var input = new Claim[] { };
//Use these claims for your security.
var output = engine.Transform(expression, input);

See the test suite for more examples.

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5.2

    • No dependencies.
  • .NETFramework 4.6.1

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ClaimsTransformation.Language:

Package Downloads
ClaimsTransformation.Engine

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.6 462 3/17/2022
0.0.5 321 9/24/2021
0.0.4 501 11/8/2019
0.0.3 461 10/28/2019
0.0.2 462 10/25/2019
0.0.1 478 8/15/2019