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