您能帮我了解一下Azure函数AzureWebJobsStorage和AzureWebJobsSecretStorageType 设置的用途是什么。
我是Azure的新手,所以请通过示例说出答案。
我想在主页加载时显示警报.所以我在构造函数中声明了显示警报.但我没有得到任何回应.
我附上了我的示例代码.
public Home()
{
InitializeComponent();
if (!(Plugin.Connectivity.CrossConnectivity.Current.IsConnected))
{
if (System.IO.File.Exists(path + "App" + "/Data.txt"))
{
Device.BeginInvokeOnMainThread(async () =>
{
await DisplayAlert("Success", "Saved", "OK");
});
}
else
{
Device.BeginInvokeOnMainThread(async () =>
{
await DisplayAlert("Oops", "Login Required", "OK");
});
}
}
else
{
GetDetails();
}
}
Run Code Online (Sandbox Code Playgroud)