12 lines
633 B
C#
12 lines
633 B
C#
using System;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Represents the method that will handle the <see cref="E:System.ComponentModel.BackgroundWorker.RunWorkerCompleted" /> event of a <see cref="T:System.ComponentModel.BackgroundWorker" /> class.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.RunWorkerCompletedEventArgs" /> that contains the event data. </param>
|
|
// Token: 0x02000328 RID: 808
|
|
// (Invoke) Token: 0x06001C79 RID: 7289
|
|
public delegate void RunWorkerCompletedEventHandler(object sender, RunWorkerCompletedEventArgs e);
|
|
}
|