OpenWriteCompletedEventArgs.Result Property
.NET Framework 4
Gets a writable stream that is used to send data to a server.
Assembly: System (in System.dll)
You should check the Error and Cancelled properties before using the stream 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 OpenWriteCallback2 (Object sender, OpenWriteCompletedEventArgs e)
{
Stream body = null;
StreamWriter s = null;
try
{
body = (Stream)e.Result;
s = new StreamWriter (body);
s.AutoFlush = true;
s.Write ("This is content data to be sent to the server.");
}
finally
{
if (s != null)
{
s.Close ();
}
if (body != null)
{
body.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.