http://msdn.microsoft.com/en-us/library/system.net.openwritecompletedeventargs.result(VS.95).aspx
I'm writing a .NET app (Silverlight API) using the WebClient class. I'm simply wanting to get an XML-style result of a server script after uploading a file Async. I figured the Result stream inside of OpenWriteCompletedEventArgs would be what I would want to look at, but MSDN says Result is: "Gets a writable stream that is used to send data to a server.".. I honestly fail to see how you can write once completed. I wonder if I can actually read from this, and if I can't, how do I go about reading the server message after the upload?
static void UploadCompleted(object sender, OpenWriteCompletedEventArgs e)
{
/* e.Result says its only a writable stream */
}