12 lines
565 B
C#
12 lines
565 B
C#
using System;
|
|
|
|
namespace System.Net
|
|
{
|
|
/// <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.UploadFileCompleted" /> event of a <see cref="T:System.Net.WebClient" />.</summary>
|
|
/// <param name="sender">The source of the event.</param>
|
|
/// <param name="e">A <see cref="T:System.Net.UploadFileCompletedEventArgs" /> that contains event data.</param>
|
|
// Token: 0x0200033C RID: 828
|
|
// (Invoke) Token: 0x06001CC9 RID: 7369
|
|
public delegate void UploadFileCompletedEventHandler(object sender, UploadFileCompletedEventArgs e);
|
|
}
|