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 SourceDownloadStringCompletedEventArgs()
Declaration
public DownloadStringCompletedEventArgs()
Properties
| Improve this Doc View SourceCancelled
Gets a value indicating whether an asynchronous operation has been canceled.
Declaration
public bool Cancelled { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Error
Gets a value indicating which error occurred during an asynchronous operation.
Declaration
public Exception Error { get; set; }
Property Value
Type | Description |
---|---|
System.Exception |
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 |
UserState
Gets the unique identifier for the asynchronous task.
Declaration
public object UserState { get; }
Property Value
Type | Description |
---|---|
System.Object |