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.

UploadFileCompletedEventArgs::Result Property

 

Gets the server reply to a data upload operation that is started by calling an UploadFileAsync 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 that contains the server reply.

You should check the Error and Cancelled properties to determine whether the upload completed. 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 UploadFileCallback2( Object^ /*sender*/, UploadFileCompletedEventArgs^ e )
{
   String^ reply = System::Text::Encoding::UTF8->GetString( e->Result );
   Console::WriteLine( reply );
}


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