mscorlib(4.0.0.0) API with additions
DownloadDataCompletedEventArgs.cs
2 
3 namespace System.Net
4 {
7  {
8  private byte[] m_Result;
9 
12  public byte[] Result
13  {
14  get
15  {
17  return m_Result;
18  }
19  }
20 
21  internal DownloadDataCompletedEventArgs(byte[] result, Exception exception, bool cancelled, object userToken)
22  : base(exception, cancelled, userToken)
23  {
24  m_Result = result;
25  }
26  }
27 }
Definition: __Canon.cs:3
Provides data for the MethodNameCompleted event.
void RaiseExceptionIfNecessary()
Raises a user-supplied exception if an asynchronous operation failed.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
Provides data for the E:System.Net.WebClient.DownloadDataCompleted event.
byte [] Result
Gets the data that is downloaded by a Overload:System.Net.WebClient.DownloadDataAsync method.