The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
DownloadDataCompletedEventArgs::Result Property
.NET Framework (current version)
Gets the data that is 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 displays the value of this property.
void DownloadDataCallback( Object^ /*sender*/, DownloadDataCompletedEventArgs^ e ) { System::Threading::AutoResetEvent^ waiter = dynamic_cast<System::Threading::AutoResetEvent^>(e->UserState); try { // If the request was not canceled and did not throw // an exception, display the resource. if ( !e->Cancelled && e->Error == nullptr ) { array<Byte>^data = dynamic_cast<array<Byte>^>(e->Result); String^ textData = System::Text::Encoding::UTF8->GetString( data ); Console::WriteLine( textData ); } } finally { // Let the main application thread resume. waiter->Set(); } }
.NET Framework
Available since 2.0
Available since 2.0
Show: