Windows apps
Collapse the table of content
Expand the table of content
Information
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.

UploadDataCompletedEventArgs::Result Property

 

Gets the server reply to a data upload operation started by calling an UploadDataAsync method.

Namespace:   System.Net
Assembly:  System (in System.dll)

public:
property array<unsigned char>^ Result {
	array<unsigned char>^ get();
}

Property Value

Type: array<System::Byte>^

A Byte array containing the server reply.

You should check the Error and Cancelled properties before using the data 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 UploadDataCallback2( Object^ /*sender*/, UploadDataCompletedEventArgs^ e )
{
   array<Byte>^data = dynamic_cast<array<Byte>^>(e->Result);
   String^ reply = System::Text::Encoding::UTF8->GetString( data );
   Console::WriteLine( reply );
}


.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft