OpenReadCompletedEventArgs.Result Property
.NET Framework 4
Gets a readable stream that contains data downloaded by a DownloadDataAsync method.
Assembly: System (in System.dll)
You should check the Error and Cancelled properties before using the data that is returned by this property. If the Error property's value is an Exception object or the Cancelled property's value is true, the asynchronous operation did not complete correctly and the Result property's value will not be valid.
The following code example uses the stream returned by this property.
private static void OpenReadCallback2 (Object sender, OpenReadCompletedEventArgs e)
{
Stream reply = null;
StreamReader s = null;
try
{
reply = (Stream)e.Result;
s = new StreamReader (reply);
Console.WriteLine (s.ReadToEnd ());
}
finally
{
if (s != null)
{
s.Close ();
}
if (reply != null)
{
reply.Close ();
}
}
}
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.