mscorlib(4.0.0.0) API with additions
DataReceivedEventArgs.cs
1 namespace System.Diagnostics
2 {
5  {
6  internal string _data;
7 
10  public string Data => _data;
11 
12  internal DataReceivedEventArgs(string data)
13  {
14  _data = data;
15  }
16  }
17 }
string Data
Gets the line of characters that was written to a redirected T:System.Diagnostics....
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: EventArgs.cs:9
Provides data for the E:System.Diagnostics.Process.OutputDataReceived and E:System....