13 lines
579 B
C#
13 lines
579 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace System.Net.Mail
|
|
{
|
|
/// <summary>Represents the method that will handle the <see cref="E:System.Net.Mail.SmtpClient.SendCompleted" /> event.</summary>
|
|
/// <param name="sender">The source of the event.</param>
|
|
/// <param name="e">An <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> containing event data.</param>
|
|
// Token: 0x0200032D RID: 813
|
|
// (Invoke) Token: 0x06001C8D RID: 7309
|
|
public delegate void SendCompletedEventHandler(object sender, global::System.ComponentModel.AsyncCompletedEventArgs e);
|
|
}
|