Trying to access the object value from Azure key vault in Asp.net core
问题 I have an object value in the key vault key of azure and trying to read the value at the startup class but the value is always null. Program.cs var azureServiceTokenProvider = new AzureServiceTokenProvider(); var keyVaultClient = new KeyVaultClient( new KeyVaultClient.AuthenticationCallback( azureServiceTokenProvider.KeyVaultTokenCallback)); config.AddAzureKeyVault( vaultConfig.AzureVaultUrl, keyVaultClient, new DefaultKeyVaultSecretManager()); Startup.cs public virtual void ConfigureSettings