前言
Azure Function 是微軟推出的Serverless 的雲端服務, 對於開發人員來說, 幾乎不需要耗費心力去管Server的環境設定, 只要專心寫Code然後上傳到雲端, That's All ~基本上一些小型的Web Api 非常適合部屬在Azure Function 上, 它可以串接我們在Github上的帳號, 然後選擇repository去部屬, 簡而言之Azure Function 好處多多,
回到正題~
如果有些敏感資訊像是某些雲端服務的Subscription key或是資料庫的帳密, 我們不想暴露在程式中的話, 我們可以把他們寫在Application Settings裡面
當我們想在程式中取出變數時, 只要
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Configuration | |
string someValue = ConfigurationManager.AppSettings["someKey"]; | |
//do something |
留言
張貼留言