Show / Hide Table of Contents

Class DownloadStringCompletedEventArgs

Provides data for the System.Net.WebClient.DownloadStringCompleted event.

Inheritance
System.Object
DownloadStringCompletedEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OpenSilver.Compatibility
Assembly: OpenSilver.dll
Syntax
public class DownloadStringCompletedEventArgs

Constructors

| Improve this Doc View Source

DownloadStringCompletedEventArgs()

Declaration
public DownloadStringCompletedEventArgs()

Properties

| Improve this Doc View Source

Cancelled

Gets a value indicating whether an asynchronous operation has been canceled.

Declaration
public bool Cancelled { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Error

Gets a value indicating which error occurred during an asynchronous operation.

Declaration
public Exception Error { get; set; }
Property Value
Type Description
System.Exception
| Improve this Doc View Source

Result

Gets the data that is downloaded by a Overload:System.Net.WebClient.DownloadStringAsync method.

Declaration
public string Result { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

UserState

Gets the unique identifier for the asynchronous task.

Declaration
public object UserState { get; }
Property Value
Type Description
System.Object
  • Improve this Doc
  • View Source