using System; namespace System.Diagnostics { /// Provides data for the and events. /// 2 // Token: 0x020000DF RID: 223 public class DataReceivedEventArgs : EventArgs { // Token: 0x06000773 RID: 1907 RVA: 0x00013F58 File Offset: 0x00012158 internal DataReceivedEventArgs(string data) { this.data = data; } /// Gets the line of characters that was written to a redirected output stream. /// The line that was written by an associated to its redirected or stream. /// 2 // Token: 0x170001C5 RID: 453 // (get) Token: 0x06000774 RID: 1908 RVA: 0x00013F68 File Offset: 0x00012168 public string Data { get { return this.data; } } // Token: 0x04000218 RID: 536 private string data; } }