OpenWriteCompletedEventArgs::Result Property
.NET Framework (current version)
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.
void OpenWriteCallback2( Object^ /*sender*/, OpenWriteCompletedEventArgs^ e ) { Stream^ body = nullptr; StreamWriter^ s = nullptr; try { body = dynamic_cast<Stream^>(e->Result); s = gcnew StreamWriter( body ); s->AutoFlush = true; s->Write( "This is content data to be sent to the server." ); } finally { if ( s != nullptr ) { s->Close(); } if ( body != nullptr ) { body->Close(); } } }
.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: