Files
Dec2017-Script-Dump/System/Diagnostics/DataReceivedEventHandler.cs
T
2026-06-04 11:42:34 +02:00

13 lines
688 B
C#

using System;
namespace System.Diagnostics
{
/// <summary>Represents the method that will handle the <see cref="E:System.Diagnostics.Process.OutputDataReceived" /> event or <see cref="E:System.Diagnostics.Process.ErrorDataReceived" /> event of a <see cref="T:System.Diagnostics.Process" />.</summary>
/// <param name="sender">The source of the event. </param>
/// <param name="e">A <see cref="T:System.Diagnostics.DataReceivedEventArgs" /> that contains the event data. </param>
/// <filterpriority>2</filterpriority>
// Token: 0x02000329 RID: 809
// (Invoke) Token: 0x06001C7D RID: 7293
public delegate void DataReceivedEventHandler(object sender, DataReceivedEventArgs e);
}