如果我想返回webclient的结果,该怎么用

时间:2013-09-30 22:26:05

标签: c# asynchronous windows-phone-8 webclient downloadstring

采取以下代码:

    public async Task<string> AuthenticatedGetData(string url, string token)
    {
        WebClient client = new WebClient();
        client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(WebClient_DownloadStringCompleted);
        client.DownloadStringAsync(new Uri(url + "?oauth_token=" + token));
    }

    private void WebClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
    {
        string response = e.Result;    
    }

WebClient_DownloadStringCompleted被调用...而响应=我想要的响应......太棒了。完美...

现在考虑我如何调用这个AuthenticatedGetData方法:

它是从一种存储库中调用的......存储库需要一个字符串,以便它可以序列化并对生成的对象进行处理......

所以一切都从存储库运行async ...调用authenticatedgetdata,然后发出请求...但是因为downloadstringasync没有.Result()方法,因为downloadstringcompleted需要一个void方法调用...我无法将结果字符串返回到调用存储库。

关于我必须做什么来获取client.DownloadStringAsync以在完成时返回响应字符串的任何想法?

是不是我只是必须将我的数据访问操作紧密地耦合到这个特定的应用程序..它看起来很不可用:(我真的希望保持我的整个身份验证的东西完全独立于将要发生的事情并且我不想为每个存储库重复上面的代码,因为它们对于每个存储库都是相同的!

修改:: //

我在我的类中创建了一个处理上述请求的抽象方法......然后我用我的存储库扩展这个类并实现抽象方法。听起来不错?

编辑:// 按要求调用代码:

public class OrganisationRepository
{
    PostRequest postRequest;

    public OrganisationRepository()
    {
        this.postRequest = new PostRequest();
    }
    public IEnumerable<Organisation> GetAll()
    {
        string requestUrl = BlaBla.APIURL + "/org/";
        string response = postRequest.AuthenticatedGetData(requestUrl, BlaBla.Contract.AccessToken).Result;
    }
}

public class PostRequest
{

    public Task<string> AuthenticatedGetData(string url, string token)
    {

        TaskCompletionSource<string> tcs = new TaskCompletionSource<string>();

        WebClient client = new WebClient();
        client.DownloadStringCompleted += (sender, e) =>
        {
            if (e.Error != null)
            {
                tcs.TrySetException(e.Error);
            }
            else if (e.Cancelled)
            {
                tcs.TrySetCanceled();
            }
            else
            {
                tcs.TrySetResult(e.Result);
            }
        };
        client.DownloadStringAsync(new Uri(url + "?oauth_token=" + token));
        return tcs.Task;
    }
}

2 个答案:

答案 0 :(得分:1)

我不确定windows-phone-8对此有何限制。但我认为这应该有用。

public Task<string> AuthenticatedGetData(string url, string token)
    {
        TaskCompletionSource<string> tcs = new TaskCompletionSource<string>();

        WebClient client = new WebClient();
        client.DownloadStringCompleted += (sender, e) =>
        {
            if (e.Error != null)
            {
                tcs.TrySetException(e.Error);
            }
            else if (e.Cancelled)
            {
                tcs.TrySetCanceled();
            }
            else
            {
                tcs.TrySetResult(e.Result);
            }            
        };
        client.DownloadStringAsync(new Uri(url + "?oauth_token=" + token));
        return tcs.Task;
    }

您也可以使用此功能(不确定它是否适用于Windows Phone 8)

public Task<string> AuthenticatedGetData(string url, string token)
    {
        WebClient client = new WebClient();
        return client.DownloadStringTaskAsync(new Uri(url + "?oauth_token=" + token));

    }

答案 1 :(得分:-1)

解决方案是根本不使用WebClient库。这是问题:您正在等待您的异步AuthenticatedGetData任务,但它什么也没做,因为任务没有等待调用,这意味着它将立即完成。在任务上调用.result将始终为null,因为您永远不能在该方法中返回值。在触发DownloadCompleted事件后,WebClient依赖于调用函数调用。但是,除非他们也订阅了DownloadCompleted事件处理程序,否则任何人都无法确切知道这种情况何时发生,这很愚蠢。我建议使用HttpWebRequest http://blogs.msdn.com/b/andy_wigley/archive/2013/02/07/async-and-await-for-http-networking-on-windows-phone.aspx祝福真正的异步Web请求服务。