是否可以使用 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);
}