mscorlib(4.0.0.0) API with additions
DownloadStringCompletedEventArgs.cs
2 
3 namespace System.Net
4 {
7  {
8  private string m_Result;
9 
12  public string Result
13  {
14  get
15  {
17  return m_Result;
18  }
19  }
20 
21  internal DownloadStringCompletedEventArgs(string 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.
string Result
Gets the data that is downloaded by a Overload:System.Net.WebClient.DownloadStringAsync method.
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.DownloadStringCompleted event.