.NET SDK reference (server-side)
.NET SDK reference (server-side)
.NET SDK reference (server-side)
This topic documents how to get started with the server-side .NET SDK, and links to reference information on all of the supported features.
LaunchDarkly’s SDKs are open source. In addition to this reference guide, we provide source, API reference documentation, and a sample application:
This SDK is intended for use in multi-user .NET server applications. If you have a .NET application and want to set up LaunchDarkly in a mobile, desktop, or embedded application, read the client-side .NET SDK reference.
To learn more about LaunchDarkly’s different SDK types, read Choosing an SDK type.
The LaunchDarkly .NET SDK, version 8.9 and higher, is compatible with .NET 8.
The LaunchDarkly .NET SDK, version 7.0 and higher, is compatible with .NET 6.0+, .NET Framework 4.6.2+, .NET Standard 2.0+, and .NET Core 3.1.
Prior to version 7.0, the LaunchDarkly .NET SDK also supported .NET 5.0, .NET Framework 4.5.2 and .NET Framework 4.6.1, and .NET Core 2.1.
After you complete the Getting Started process, follow these instructions to start using the LaunchDarkly SDK in your .NET application.
First, install the LaunchDarkly SDK as a dependency in your application using your application’s dependency manager.
We recommend making the LaunchDarkly observability plugin available as well. This plugin collects and sends observability data to LaunchDarkly. This means you can review error monitoring and logs from within the LaunchDarkly UI. It requires the .NET (server-side) SDK version 8.10 or later.
Here’s how:
Next, import the LaunchDarkly SDK’s namespaces in your application code. The namespace is not the same as the package name:
The .NET (server-side) SDK uses an SDK key. Keys are specific to each project and environment. They are available on the SDK keys page under Settings. To learn more about key types, read Keys.
After you install and import the SDK, create a single, shared instance of LdClient. Specify your SDK key in the configuration to authorize your application to connect to a particular environment within LaunchDarkly.
To create a single instance:
When you initialize the client, you can optionally provide configuration options. To learn more, read Configuration. To learn more about the specific configuration that are available in this SDK, read ConfigurationBuilder.
In the standard use case where there is only one SDK key, it’s important to make the LdClient a singleton for each LaunchDarkly project. The client instance maintains internal state that allows LaunchDarkly to serve feature flags without making any remote requests. Do not instantiate a new client with every request.
If you need to use more than one SDK key, the SDK allows you to create more than one LdClient instance. This is an uncommon requirement, but one the SDK supports.
If you have multiple LaunchDarkly projects, you can create one LDClient for each. In this situation, the clients operate independently. For example, they do not share a single connection to LaunchDarkly.
You can use client to check which variation a particular context will receive for a given feature flag. To learn more, read Evaluating flags and Flag evaluation reasons. For more information about how contexts are specified, read Context configuration.
In the v7 example, the context key is the string “example-context-key”. In the v6 example, the user key is the string “example-user-key”:
Contexts have a context kind of “user” by default. To specify a different kind, use the Kind method:
To learn more, read Context kinds.
LaunchDarkly is deprecating support for TLS versions 1.0 and 1.1. .NET applications running on older operating systems are prone to use these older, less secure versions of TLS. It is possible to increase your application’s security using AppContext switches.
To learn more, read Microsoft’s documentation.
If you cannot update your application platform’s configurations to support TLS version 1.2, you can update your application’s SDK configuration to use new LaunchDarkly endpoints that support TLS versions 1.0 and later. Here is an example:
LaunchDarkly servers operate in a load-balancing framework which may cause their IP addresses to change. This could result in the SDK failing to connect to LaunchDarkly if an old IP address is still in your system’s DNS cache. In .NET, the DNS cache retains IP addresses for two minutes by default. If you notice intermittent connection failures that always resolve in two minutes, you may want to change this setting to a lower value as described in Microsoft’s documentation.
Shut down the client when your application terminates. To learn more, read Shutting down.
This SDK supports the following features: