3

是否可以使用 WebClient 发布到服务器并获得响应?我正在尝试通过 Silverlight 将文件上传到 MVC 应用程序。当我使用 WebClient 时,我可以成功上传文件,但我需要得到响应。我只是不知道怎么做。

private void UploadFile(string fileName, Stream data)
{
        UriBuilder ub = new UriBuilder("http://localhost:17016/upload/funds/" + fileName);
        WebClient c = new WebClient();

        c.OpenWriteCompleted += (sender, e) =>
        {
            input.Position = 0;
            input.CopyTo(e.Result);
            e.Result.Close();
            data.Close();
        };


        c.OpenWriteAsync(ub.Uri);

}
4

1 回答 1

-2

WebClient 有一个事件OpenWriteComplete。您可以使用它从 OpenWriteAsync 获取结果。

于 2012-06-15T18:50:30.373 回答