No results for ""
EXPAND ALL
  • Home
  • API docs

GIVE DOCS FEEDBACK

.NET (client-side) SDK 3.x to 4.0 migration guide

Read time: 5 minutes
Last edited: May 01, 2024

Overview

This topic explains the changes in the .NET (client-side) SDK 4.0 release and how to migrate to that version.

Version 4.0 contains breaking changes. It introduces the ability to have LaunchDarkly automatically provide data about the mobile environment where the application is running. This data makes it simpler to target your mobile customers based on application name or version, or on device characteristics including manufacturer, model, operating system, and so on.

When you configure the SDK, starting in version 4.0 you must indicate whether LaunchDarkly should or should not include this data. As part of this change, the Init and InitAsync methods now include an additional required parameter. To learn more, read Understanding changes to configuration options, below.

This data is provided in two new context kinds. The data is added automatically to each evaluation context you provide.

Customers who are billed by primary context kind may be charged based on the ld_device context kind if it becomes the context kind with the highest volume of monthly activity in their account. This feature does not affect customers on other billing models. To learn more, read Account usage metrics.

Version 4.0 of the SDK also introduces the ability to configure the SDK to send application metadata to LaunchDarkly.

Before you migrate to version 4.0, we recommend updating to the latest 3.x version. If you update to the latest 3.x version, deprecation warnings appear in areas of your code that need to be changed for 4.0. You can update these areas at your own pace while still using 3.x, rather than migrating everything simultaneously. To learn more about updating to the latest 3.x version, visit the SDK's GitHub repository.

Understanding changes to configuration options

Version 4.0 introduces a new, required configuration parameter. Use this to indicate whether LaunchDarkly should automatically provide data about the mobile environment where the application is running as part of each evaluation context. You must include this parameter when building your Configuration.

Here's how:

var config = Configuration
.Builder("mobile-key-123abc", ConfigurationBuilder.AutoEnvAttributes.Enabled)
.Build();

You must also include this new parameter when calling Init or InitAsync.

For example:

var context = Context.New("context-key-123abc");
var timeSpan = TimeSpan.FromSeconds(10);
client = LdClient.Init("mobile-key-123abc", ConfigurationBuilder.AutoEnvAttributes.Enabled, context, timeSpan);

To disable this option, pass in AutoEnvAttributes.Disabled instead.

To learn more, read Configuration.

Understanding the automatically added environment attributes

If you use AutoEnvAttributes.Enabled in the SDK client configuration, the SDK automatically adds two additional contexts to each context that you evaluate. You can use attributes from these contexts in your targeting rules.

Working with multi-contexts

Because the SDK automatically adds contexts, every evaluation context is now a set of multiple contexts, which is called a multi-context. This means to you can create targeting rules in your feature flags based on data from multiple contexts at once. To learn more, read Multi-contexts.

These automatically added contexts include the following attributes:

Context kindContext attributeDescriptionExample
ld_applicationkeyUnique for this context kind. Automatically generated by the SDK.randomly generated
idUnique identifier of the application.com.launchdarkly.example
localeLocale of the device, in IETF BCP 47 Language Tag format.en-US
nameHuman-friendly name of the application.Example Mobile App
versionVersion of the application used for update comparison.5
versionNameHuman-friendly name of the version. May or may not be a semantic version.5
envAttributesVersionVersion of the environment attributes schema being used. This may change in later versions of the SDK.1.0
ld_devicekeyUnique for this context kind. Automatically generated by the SDK.randomly generated
manufacturerManufacturer of the device.Google
modelModel of the device.Pixel 6 Pro
osOperating system of the device. Includes properties for family, name, and version.
  • family: Android
  • version: 13
  • name: Android33
envAttributesVersionVersion of the environment attributes schema being used. This may change in later versions of the SDK.1.0

If the SDK cannot determine the information for a particular attribute, it will not include that attribute. For example, if the SDK cannot determine the device's model, it will not include the model attribute.

If the SDK can determine none of the information for an entire context, it will not include that context. For example, if you run the .NET (client-side) SDK on a desktop environment, the SDK cannot reliably get the device information. In this case the ld_device context is omitted.

Automatic environment attributes and application metadata configuration

If you are already setting application metadata as part of your SDK configuration, you can still use this new environment attributes feature. Any application metadata that you set will override the automatically collected environment attributes.

Specifically, the ld_application context attributes are set based on the following priority order:

  1. If you set values for application id, name, version, or version name using application metadata configuration in the SDK, then the ld_application context will reflect those values.
  2. Otherwise, if you have set values for the application id, name, version, or version name within your mobile app, the ld_application context will reflect those values.
  3. Otherwise, the ld_application context will use the LaunchDarkly SDK name and version.