14 lines
703 B
C#
14 lines
703 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Represents the method that will handle the <see cref="E:System.ComponentModel.BackgroundWorker.ProgressChanged" /> event of the <see cref="T:System.ComponentModel.BackgroundWorker" /> class. This class cannot be inherited.</summary>
|
|
/// <param name="sender">The source of the event.</param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.ProgressChangedEventArgs" /> that contains the event data.</param>
|
|
// Token: 0x02000170 RID: 368
|
|
// (Invoke) Token: 0x06000950 RID: 2384
|
|
[Token(Token = "0x2000170")]
|
|
public delegate void ProgressChangedEventHandler(object sender, ProgressChangedEventArgs e);
|
|
}
|