mscorlib(4.0.0.0) API with additions
OpenReadCompletedEventArgs.cs
2 using System.IO;
3 
4 namespace System.Net
5 {
8  {
9  private Stream m_Result;
10 
13  public Stream Result
14  {
15  get
16  {
18  return m_Result;
19  }
20  }
21 
22  internal OpenReadCompletedEventArgs(Stream result, Exception exception, bool cancelled, object userToken)
23  : base(exception, cancelled, userToken)
24  {
25  m_Result = result;
26  }
27  }
28 }
Stream Result
Gets a readable stream that contains data downloaded by a Overload:System.Net.WebClient....
Definition: __Canon.cs:3
Provides data for the E:System.Net.WebClient.OpenReadCompleted event.
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 a generic view of a sequence of bytes. This is an abstract class.To browse the ....
Definition: Stream.cs:16