rm.FeatureToggle 3.1.1

This package has a SemVer 2.0.0 package version: 3.1.1+821cbb292011894c833ad84ac39e36a186a64628.
dotnet add package rm.FeatureToggle --version 3.1.1                
NuGet\Install-Package rm.FeatureToggle -Version 3.1.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="rm.FeatureToggle" Version="3.1.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add rm.FeatureToggle --version 3.1.1                
#r "nuget: rm.FeatureToggle, 3.1.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.
// Install rm.FeatureToggle as a Cake Addin
#addin nuget:?package=rm.FeatureToggle&version=3.1.1

// Install rm.FeatureToggle as a Cake Tool
#tool nuget:?package=rm.FeatureToggle&version=3.1.1                

Feature Toggle

Few dials for feature toggle.

NuGet version (rm.FeatureToggle)

PercentageDial

ToDial(percentage) returns true with a percentage probability. It has a dependency on Random which needs to be thread-safe. See thread-safe Random implementations here (nuget). percentage range is [0.01-100.00] (2 decimal places precision).

CountDial

ToDial(count) returns true for first count calls, and false after. It's useful to sample few calls before dialing with a percentage. It maintains an internal counter with a lock. Dialing count to 0 does not incur the lock perf hit.

CountThenPercentageDial

ToDial(count, percentage) returns true for first count calls, and then with a percentage probability. It uses CountDial and PercentageDial underneath the hood, and provides flexibility to sample few calls first and then dial with a percentage. Due to the lock perf hit (except when count is 0), it's better to eventually change to PercentageDial.

IdDial

ToDial(id, percentage) returns true if the calculated value of a string id ([0.01-100.00] and deterministic) is less than or equal to percentage. This dial makes the dialing a function of something (id) versus randomness. It's deterministic so IsDial(id, percentage) will keep returning true as long as the percentage is same or increasing. It will behave uniformly if the id values have high cardinality, and with no traffic clustering.

DateRangeDial

ToDial(startDate, endDate) returns true if the current date value is within the date range. If startDate > endDate, false is returned instead of throwing for convenience.

Probability

IsTrue(percentage) returns true with a percentage probability. It acts as a helper method, and is used internally by PercentageDial.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 rm.FeatureToggle:

Package Downloads
rm.DelegatingHandlers

Provides DelegatingHandlers.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.1 102 1/30/2024
3.1.0 48 1/30/2024
3.0.0 146 11/20/2023
3.0.0-alpha5 55 9/24/2023
3.0.0-alpha4 57 9/24/2023
3.0.0-alpha3 73 2/26/2023
3.0.0-alpha2 81 1/1/2023
3.0.0-alpha1 77 1/1/2023
3.0.0-alpha0 101 5/17/2022
2.3.1 85 9/24/2023
2.3.0 105 2/26/2023
2.2.1 91 2/26/2023
2.2.1-readme0 73 2/26/2023
2.2.0 258 3/9/2022
2.2.0-alpha0 105 3/9/2022
2.1.0-alpha0 133 9/25/2021
2.0.0 1,806 11/27/2021
2.0.0-alpha3 1,783 11/27/2021
2.0.0-alpha2 126 8/25/2021
2.0.0-alpha1 117 8/24/2021
2.0.0-alpha0 137 8/22/2021
1.1.2 16,048 11/9/2021
1.1.2-alpha1 120 11/9/2021
1.1.2-alpha0 122 11/9/2021
1.1.1 233 9/26/2021
1.1.1-alpha0 172 9/26/2021
1.1.0 155 9/25/2021
1.0.3 174 8/30/2021
1.0.3-alpha2 115 8/30/2021
1.0.3-alpha0 116 8/30/2021
1.0.2 194 8/22/2021
1.0.2-alpha1 148 8/21/2021
1.0.1 164 8/21/2021
1.0.0 206 5/9/2021

tag: v3.1.1