无法使用web api保存数据Xamarin android应用程序

时间:2016-12-11 12:25:46

标签: c# asp.net-web-api xamarin.android

这是我在xamarin中的第一个代码,我想使用web api保存数据但是经过数小时的努力后我无法这样做。任何人都可以帮助识别错误。

public async Task SaveTodoItemAsync(string EmpCode)
    {
        try
        {
            string url = "http://192.168.1.9/attandanceapi/api/attandance/";

            var uri = new Uri(string.Format(url));
            var json = JsonConvert.SerializeObject(EmpCode);
            var content = new StringContent(json, Encoding.UTF8, "application/json");
            HttpResponseMessage response = null;
            response = await client.PutAsync(url, content);

            var responses = response;
        }
        catch (Exception ex)
        {

            var w = ex.ToString();
        }
    }

我的xamarin安卓代码是

indexOf

提前致谢。

1 个答案:

答案 0 :(得分:2)

您正在使用PutAsync,但您的网络API需要POST。你试过PostAsync吗?