Home > Mobile >  How to create Azure Feature Flag for the App Configuration through c# code?
How to create Azure Feature Flag for the App Configuration through c# code?

Time:12-01

I am using .net core 3 to create configuration setting in App configuration. I was able to create a key-value in the configuration explorer using the following code snippet and some additional configuration in the link below

var client = new ConfigurationClient(_configuration.GetConnectionString("AppConnectionString"));
var settingToCreate = new ConfigurationSetting(model.Key, model.Value);
client.SetConfigurationSetting(settingToCreate);

enter image description here

So I think this is a problem with the library and there are no restrictions.

CodePudding user response:

Please see this sample for managing feature flags with the .NET SDK for App Configuration.

  • Related