我尝试按照链接中提供的步骤从 azure 函数访问密钥库机密。我将检索到的值存储为静态变量,如下所示:
#region [-- Properties --]
public static string KeyForAPI { get; set; }
public static string ApiEndPoint { get; set; }
#endregion
在函数执行期间,存储在上述静态变量中的值为空。
是否有任何替代方法可以使用密钥库机密来解决此问题。