小编Bal*_*alu的帖子

Azure函数AzureWebJobsStorage和AzureWebJobsSecretStorageType设置的用途是什么

您能帮我了解一下Azure函数AzureWebJobsStorageAzureWebJobsSecretStorageType 设置的用途是什么。

我是Azure的新手,所以请通过示例说出答案。

azure azure-storage azure-functions

6
推荐指数
1
解决办法
4851
查看次数

Xamarin表单内部构造函数显示警告未显示?

我想在主页加载时显示警报.所以我在构造函数中声明了显示警报.但我没有得到任何回应.

我附上了我的示例代码.

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)

c# xamarin xamarin.forms

4
推荐指数
1
解决办法
1577
查看次数