12 lines
570 B
C#
12 lines
570 B
C#
using System;
|
|
|
|
namespace System.Net
|
|
{
|
|
/// <summary>Represents the method that will handle the <see cref="E:System.Net.WebClient.UploadStringCompleted" /> 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.UploadStringCompletedEventArgs" /> containing event data.</param>
|
|
// Token: 0x0200033E RID: 830
|
|
// (Invoke) Token: 0x06001CD1 RID: 7377
|
|
public delegate void UploadStringCompletedEventHandler(object sender, UploadStringCompletedEventArgs e);
|
|
}
|