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

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);
}