OpenFeature.Providers.GOFeatureFlag 1.0.0

Prefix Reserved
dotnet add package OpenFeature.Providers.GOFeatureFlag --version 1.0.0
                    
NuGet\Install-Package OpenFeature.Providers.GOFeatureFlag -Version 1.0.0
                    
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="OpenFeature.Providers.GOFeatureFlag" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OpenFeature.Providers.GOFeatureFlag" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="OpenFeature.Providers.GOFeatureFlag" />
                    
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 OpenFeature.Providers.GOFeatureFlag --version 1.0.0
                    
#r "nuget: OpenFeature.Providers.GOFeatureFlag, 1.0.0"
                    
#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.
#:package OpenFeature.Providers.GOFeatureFlag@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OpenFeature.Providers.GOFeatureFlag&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=OpenFeature.Providers.GOFeatureFlag&version=1.0.0
                    
Install as a Cake Tool

GO Feature Flag - OpenFeature .NET provider

nuget

This version of the provider requires to use GO Feature Flag relay-proxy v1.45.0 or above. If you have an older version of the relay-proxy, please use the version the package OpenFeature.Contrib.Providers.GOFeatureFlag in version 0.2.1 to get the right provider.

This is the official OpenFeature .NET provider for accessing your feature flags with GO Feature Flag.

In conjuction with the OpenFeature SDK you will be able to evaluate your feature flags in your .NET applications.

For documentation related to flags management in GO Feature Flag, refer to the GO Feature Flag documentation website.

Functionalities:

  • Manage the integration of the OpenFeature .NET SDK and GO Feature Flag relay-proxy.
  • 2 types of evaluations available:
    • In process: fetch the flag configuration from the GO Feature Flag relay-proxy API and evaluate the flags directly in the provider.
    • Remote: Call the GO Feature Flag relay-proxy for each flag evaluation.
  • Collect and send evaluation data to the GO Feature Flag relay-proxy for statistics and monitoring purposes.
  • Support the OpenFeature tracking API to associate metrics or KPIs with feature flag evaluation contexts.

Dependency Setup

.NET Cli

dotnet add package OpenFeature.Providers.GOFeatureFlag

Package Manager

NuGet\Install-Package OpenFeature.Providers.GOFeatureFlag

Package Reference

<PackageReference Include="OpenFeature.Providers.GOFeatureFlag" />

Packet cli

paket add OpenFeature.Providers.GOFeatureFlag

Cake

// Install OpenFeature.Providers.GOFeatureFlag as a Cake Addin
#addin nuget:?package=OpenFeature.Providers.GOFeatureFlag

// Install OpenFeature.Providers.GOFeatureFlag as a Cake Tool
#tool nuget:?package=OpenFeature.Providers.GOFeatureFlag
```[GoFeatureFlagProviderOptions.cs](GoFeatureFlagProviderOptions.cs)

## Getting started

### Initialize the provider

GO Feature Flag provider needs to be created and then set in the global OpenFeatureAPI.

The only required option to create a `GoFeatureFlagProvider` is the endpoint to your GO Feature Flag relay-proxy
instance.

```csharp
using OpenFeature.Providers.GOFeatureFlag;

var options = new GoFeatureFlagProviderOptions { Endpoint = "https://gofeatureflag.example.com" };
var provider = new GoFeatureFlagProvider(options);

// Associate the provider with the OpenFeature API
await Api.Instance.SetProviderAsync("client_test", provider);

// Create a client to perform feature flag evaluations
var client = Api.Instance.GetClient("client_test");

// targetingKey is mandatory for each evaluation
var evaluationContext = EvaluationContext.Builder()
        .SetTargetingKey("d45e303a-38c2-11ed-a261-0242ac120002")
        .Set("email", "john.doe@gofeatureflag.org")
        .Build();

// Example of a boolean flag evaluation
var myFeatureFlag = await client.GetBooleanDetailsAsync("my-feature-flag", false, evaluationContext);

The evaluation context is the way for the client to specify contextual data that GO Feature Flag uses to evaluate the feature flags, it allows to define rules on the flag.

The targetingKey is mandatory for GO Feature Flag in order to evaluate the feature flag, it could be the id of a user, a session ID or anything you find relevant to use as identifier during the evaluation.

Configure the provider

You can configure the provider with several options to customize its behavior. The following options are available:

name mandatory Description
Endpoint true endpoint contains the DNS of your GO Feature Flag relay proxy (ex: https://mydomain.com/gofeatureflagproxy/)
EvaluationType false evaluationType is the type of evaluation you want to use.<ul><li>If you want to have a local evaluation, you should use InProcess.</li><li>If you want to have an evaluation on the relay-proxy directly, you should use Remote.</li></ul>Default: InProcess<br/>
Timeout false timeout in millisecond we are waiting when calling the relay proxy API. (default: 10000)
ApiKey false If the relay proxy is configured to authenticate the requests, you should provide an API Key to the provider. Please ask the administrator of the relay proxy to provide an API Key. (default: null)
FlushIntervalMs false interval time we publish statistics collection data to the proxy. The parameter is used only if the cache is enabled, otherwise the collection of the data is done directly when calling the evaluation API. default: 1000 ms
MaxPendingEvents false max pending events aggregated before publishing for collection data to the proxy. When event is added while events collection is full, event is omitted. (default: 10000)
DisableDataCollection false set to true if you don't want to collect the usage of flags retrieved in the cache. (default: false)
ExporterMetadata false exporterMetadata is the metadata we send to the GO Feature Flag relay proxy when we report the evaluation data usage.
EvaluationFlagList false If you are using in process evaluation, by default we will load in memory all the flags available in the relay proxy. If you want to limit the number of flags loaded in memory, you can use this parameter. By setting this parameter, you will only load the flags available in the list. <p>If null or empty, all the flags available in the relay proxy will be loaded.</p>
FlagChangePollingIntervalMs false interval time we poll the proxy to check if the configuration has changed. It is used for the in process evaluation to check if we should refresh our internal cache. default: 120000

Evaluate a feature flag

The OpenFeature client is used to retrieve values for the current EvaluationContext. For example, retrieving a boolean value for the flag "my-flag":

var client = Api.Instance.GetClient("client_test");
var myFeatureFlag = await client.GetBooleanValueAsync("my-feature-flag", false, evaluationContext);

GO Feature Flag supports different all OpenFeature supported types of feature flags, it means that you can use all the accessor directly

// Boolean
client.GetBooleanValueAsync("my-flag", false, evaluationContext);

// String
client.GetStringValueAsync("my-flag", "default", evaluationContext);

// Integer
client.GetIntegerValueAsync("my-flag", 1, evaluationContext);

// Double
client.GetDoubleValueAsync("my-flag", 1.1, evaluationContext);

// Object
client.GetObjectValueAsync("my-flag", new Value("any value you want"), evaluationContext);

How it works

In process evaluation

When the provider is configured to use in process evaluation, it will fetch the flag configuration from the GO Feature Flag relay-proxy API and evaluate the flags directly in the provider.

The evaluation is done inside the provider using a webassembly module that is compiled from the GO Feature Flag source code. The wasm module is used to evaluate the flags, and the source code is available in the thomaspoignant/go-feature-flag repository.

The provider will call the GO Feature Flag relay-proxy API to fetch the flag configuration and then evaluate the flags using the wasm module.

Remote evaluation

When the provider is configured to use remote evaluation, it will call the GO Feature Flag relay-proxy for each flag evaluation.

It will perform an HTTP request to the GO Feature Flag relay-proxy API with the flag name and the evaluation context for each flag evaluation.

‼️ .NET Framework Compatibility

To be able to use the GO Feature Flag provider using the In Process mode, you need to use .NET Core SDK 3.0 SDK or later. If you are using an older version of the .NET Framework, you will only be able to use the remote evaluation mode.

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 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 is compatible.  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 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 is compatible.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 581 11/11/2025