DownloadStringCompletedEventArgs.Result Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets the data that is downloaded by a DownloadStringAsync method.

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

Syntax

Public ReadOnly Property Result As String
public string Result { get; }

Property Value

Type: System..::.String
A String that contains the downloaded data.

Exceptions

Exception Condition
InvalidOperationException

The asynchronous request was cancelled.

Remarks

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.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Platforms

Windows Phone

See Also

Reference

DownloadStringCompletedEventArgs Class

System.Net Namespace