如何将图像读入ImageSource
?我应该从这个Get
方法中获取的源文件是一个jpg
文件,我想将其放入ImageSource
并返回它。
这是我通常获取Json
数据的方式:
var getJson = await client.GetAsync(myUrl).ConfigureAwait(false);
if (getJson.IsSuccessStatusCode)
{
var json = await getJson.Content.ReadAsStringAsync().ConfigureAwait(false);
return json
}
字符串
1条答案
按热度按时间uyto3xhc1#
你可以试试这个
字符串