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

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