我有一个包含有效xml的url,但不确定如何使用RestClient检索它。我以为我可以只下载字符串,然后就像我已经使用WebClient一样解析它。
这样做的:
public static Task<String> GetLatestForecast(string url)
{
var client = new RestClient(url);
var request = new RestRequest();
return client.ExecuteTask<String>(request);
}
关于那个'字符串'必须是一个带有公共无参数构造函数的非抽象类型的VS哭。
请参阅executetask:
namespace RestSharp
{
public static class RestSharpEx
{
public static Task<T> ExecuteTask<T>(this RestClient client, RestRequest request)
where T : new()
{
var tcs = new TaskCompletionSource<T>(TaskCreationOptions.AttachedToParent);
client.ExecuteAsync<T>(request, (handle, response) =>
{
if (response.Data != null)
tcs.TrySetResult(response.Data);
else
tcs.TrySetException(response.ErrorException);
});
return tcs.Task;
}
}
}
感谢ClausJørgensen顺便提一下关于Live Tiles的精彩教程!
我只想下载字符串,因为我已经有一个解析器,等待它解析它: - )
答案 0 :(得分:1)
如果你想要的只是一个字符串,那么只需使用这种方法:
namespace RestSharp
{
public static class RestSharpEx
{
public static Task<string> ExecuteTask(this RestClient client, RestRequest request)
{
var tcs = new TaskCompletionSource<string>(TaskCreationOptions.AttachedToParent);
client.ExecuteAsync(request, response =>
{
if (response.ErrorException != null)
tcs.TrySetException(response.ErrorException);
else
tcs.TrySetResult(response.Content);
});
return tcs.Task;
}
}
}