mscorlib(4.0.0.0) API with additions
WriteStreamClosedEventArgs.cs
2 
3 namespace System.Net
4 {
6  [EditorBrowsable(EditorBrowsableState.Never)]
8  {
11  [Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
12  [EditorBrowsable(EditorBrowsableState.Never)]
13  public Exception Error
14  {
15  get
16  {
17  return null;
18  }
19  }
20 
22  [Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
23  [EditorBrowsable(EditorBrowsableState.Never)]
25  {
26  }
27  }
28 }
Exception Error
Gets the error value when a write stream is closed.
EditorBrowsableState
Specifies the browsable state of a property or method from within an editor.
Definition: __Canon.cs:3
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: EventArgs.cs:9
WriteStreamClosedEventArgs()
Initializes a new instance of the T:System.Net.WriteStreamClosedEventArgs class.
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.WriteStreamClosed event.