Delegate MimeItemCopyEventHandler

MimeItemCopyEventHandler delegate

Represents a delegate for handling events related to the copying of Mime items, typically used in scenarios where a MailMessage object is copied from one storage to another.

public delegate void MimeItemCopyEventHandler(object sender, MimeItemCopyEventArgs e);
ParameterTypeDescription
senderObjectThe source of the event, often an object raising the event.
eMimeItemCopyEventArgsEvent arguments containing information about the copy operation.

See Also